Guest User

Untitled

a guest
Jun 25th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. $ irb
  2. irb(main):001:0> arr = [7,4,6,8,5,10,9,2,3,11,1]
  3. => [7, 4, 6, 8, 5, 10, 9, 2, 3, 11, 1]
  4. irb(main):002:0> arr.sort
  5. => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
  6. irb(main):003:0>
Add Comment
Please, Sign In to add comment