Guest User

Untitled

a guest
Jan 16th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. words = []
  2. new_word = 1
  3.  
  4. # puts "Enter a word >>>"
  5. # new_word = gets.chomp.downcase
  6.  
  7. while new_word != ""
  8.  
  9. puts "Enter a word >>>"
  10. new_word = gets.chomp.downcase
  11.  
  12. last_word = words.length - 1
  13.  
  14. while words[last_word].to_s < new_word
  15. last_word = last_word - 1
  16. end
  17.  
  18.  
  19. words.insert(last_word , new_word)
  20.  
  21. puts words.to_s #just to check
  22. end
  23.  
  24. puts words.to_s
Add Comment
Please, Sign In to add comment