Skip to content

Instantly share code, notes, and snippets.

@rvbsanjose
Created October 7, 2012 10:09
Show Gist options
  • Save rvbsanjose/3847750 to your computer and use it in GitHub Desktop.
Save rvbsanjose/3847750 to your computer and use it in GitHub Desktop.
Read the Error
def print_and_sort(array)
output_string = ""
array = array.map! {|str| str.to_s }
array.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