Guest User

Untitled

a guest
Feb 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. - cars = @cars.size
  2.  
  3. - if cars > 8
  4. - first_off = 8
  5. - else
  6. - first_off = @cars.size
  7.  
  8. - if cars >= 17
  9. - second_off = 17
  10. - elsif cars >= 9
  11. - second_off = @cars.size
  12.  
  13. - if cars > 24
  14. - third_off = 24
  15. - elsif cars >= 17
  16. - third_off = @cars.size
  17.  
  18. - scroll_pane_one = @cars[0,first_off]
  19. - scroll_pane_two = @cars[8,second_off] unless second_off.nil?
  20. - scroll_pane_three = @cars[16,third_off] unless third_off.nil?
Add Comment
Please, Sign In to add comment