└── Two sum Leetcode.py /Two sum Leetcode.py: -------------------------------------------------------------------------------- 1 | print("Enter the value:") 2 | value=int(input()) 3 | print("Enter the target:") 4 | target=int(input()) 5 | num=[] 6 | list1=[] 7 | print("List are:") 8 | for i in range(value): 9 | x=int(input()) 10 | num.append(x) 11 | print(num) 12 | for j in range(len(num)): 13 | for k in range(j): 14 | if(j