I was given an assignment to check for duplicates. If there are duplicates then we have to return false else true. As I am new to python I am unable to write the code. So it will be helpful if you guys help me with it. For Example
test = ([1,2,3,4],
[2,3,1,4],
[1,2,3,4])
should return false.