-
-
Save timurvafin/238f26a3ddc4c388359d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
result = [1] | |
loop do | |
p result.join | |
new_result = [] | |
result.each do |elem| | |
if elem == new_result.last | |
new_result[-2] += 1 | |
else | |
new_result.push(1, elem) | |
end | |
end | |
result = new_result | |
break if gets == "exit\n" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment