Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. if I have {1,2,3,4}
  2.  
  3. subsequence can be 1,2,4 OR {2,4} etc. So basically I can omit some elements but keep the order.
  4.  
  5. subarray would be( say subarray of size 3)
  6.  
  7. {1,2,3}
  8. {2,3,4}
  9.  
  10. Then what would be the subset?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement