Skip to content

Instantly share code, notes, and snippets.

@zigen
Created September 16, 2015 09:32
Show Gist options
  • Save zigen/ac9227eefdaa27cf4f35 to your computer and use it in GitHub Desktop.
Save zigen/ac9227eefdaa27cf4f35 to your computer and use it in GitHub Desktop.
i=0
result = []
while nil != buf = gets
arr = []
arr = buf.split(" ").collect do |s| s.to_i end
result.push arr
end
print result
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment