Hi there
Im doing a project at the moment and need to find the numbers 1,2 and 3 i(all) in any order entered by the user.
A=[]
B=[0,1,2,3,4]
lengthOfList = int(input("Enter the number of elements:"))
for i in range(0,lengthOfList):
elm = int(input("Enter and element value: "))
A.append(elm)
print(A)
Code so far, just need help with the functions
Regards
Paul