Count how many rows of df are not duplicated anywhere (i.e. drop every row
that has a duplicate). Return the count as an int.
Sample data:
df:
0 1 2
0 0 1 0
1 1 1 1
2 0 1 0
3 1 0 1
Sign in to write and run your own code.
solve(...)