Advertisement
phanindhar1

RemoveDuplicateRecords

Apr 1st, 2014
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. Write a space and time efficient algorithm which can remove duplicate rows of any given matrix of size R X C .
  2.  
  3. Ex:
  4.  
  5. In:
  6. 1 2 3 4
  7. 2 3 4 5
  8. 1 2 3 4
  9.  
  10.  
  11. Out:
  12. 1 2 3 4
  13. 2 3 4 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement