Skip to content

Instantly share code, notes, and snippets.

@rvbsanjose
Created October 7, 2012 10:10
Show Gist options
  • Save rvbsanjose/3847754 to your computer and use it in GitHub Desktop.
Save rvbsanjose/3847754 to your computer and use it in GitHub Desktop.
Deaf Grandma 2
def print_and_sort(array)
output_string = ""
array.map!(&:to_s).each do |element|
output_string = output_string + " " + element
end
puts output_string
array.sort
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment