25. Count Fully-Unique Rows

Medium

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
Implement solve(...)