Skip to content

Instantly share code, notes, and snippets.

@ir-norn
Created May 6, 2016 17:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ir-norn/c7bb2a0350085449e4b4c7ed2ec38fd0 to your computer and use it in GitHub Desktop.
Save ir-norn/c7bb2a0350085449e4b4c7ed2ec38fd0 to your computer and use it in GitHub Desktop.
----*
s = "----*".split(//)
b = []
s.size.times do
b << s.join.reverse[0..-2] + s.join + "\n"
s.rotate!
end
puts b[0..-2]
puts b.reverse
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment