Guest User

Untitled

a guest
Sep 23rd, 2013
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. require 'pry'
  2.  
  3.  
  4. test = Array.new
  5. test.push('')
  6. test.push('FB')
  7. test.push('FF')
  8. test.push('')
  9. test.push('FB')
  10. test.push('FF')
  11.  
  12. first = 'FF'
  13. second = 'FB'
  14. third = ''
  15.  
  16. binding.pry
  17.  
  18. test.sort do |left,right|
  19. if left == first && right == second
  20. -1
  21. elsif left == first && right == third
  22. -1
  23. elsif left == second && right == third
  24. -1
  25. end
  26.  
  27. end
  28.  
  29. puts test
Advertisement
Add Comment
Please, Sign In to add comment