Skip to content

Instantly share code, notes, and snippets.

Created July 15, 2015 10:37
Show Gist options
  • Save anonymous/fad4dcdf973f027b74c8 to your computer and use it in GitHub Desktop.
Save anonymous/fad4dcdf973f027b74c8 to your computer and use it in GitHub Desktop.
string array to int array
arr1 = (
arr2=[]
["1","2"].each { |n| arr2 << n.to_i}
arr2
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment