iamhardikat11 / CP

Unused variable found PYL-W0612
Anti-pattern
Major
a year ago2 years old
 1class Stack:
 2    def __init__(self):
 3        self.list = []
 4        for i in range(3): 5            list.append([])
 6
 7    def pop(self, stack_number):
 1def main():
 2    for _ in range(int(input())):
 3        n, m= map(int, input().split()) 4        l1 =  list(map(int, input().split()))
 5        l2 = list(map(int, input().split()))
 6        l1.sort()
10  n = int(input())
11  for i in range(0, n):
12    s = int(input())
13    (a,b,c) = calculate(s)14    print(c*c, end=' ')
15
16if __name__ == '__main__':
10  n = int(input())
11  for i in range(0, n):
12    s = int(input())
13    (a,b,c) = calculate(s)14    print(c*c, end=' ')
15
16if __name__ == '__main__':
 8
 9def main():
10  n = int(input())
11  for i in range(0, n):12    s = int(input())
13    (a,b,c) = calculate(s)
14    print(c*c, end=' ')