1
2
3
4
module Enumerable
  # Sorts the enumeration by mapping the
  # values in the enumeration through the given block.
...

Ruby sort_by_multiple

by Sporkmonger, September 05, 2008 13:11, 12 refactorings, tagged with speed, sorting

require "benchmark"
data_s...

56ee28134dd0776825445e3551979b14 Talk
1
2
3
4
def ask_words 
	array = []
	puts 'Enter words, blank row quits.'
...

Ruby Method for sorting

by onwinning.blogspot.com, August 19, 2008 17:14, 5 refactorings, tagged with noob, sorting, sort

This is exercise from Chris...

Avatar Talk
1
2
3
4
require 'csv'

def sort_csv(filename, fields = ["ID"], reverse = false)
...

Ruby Ruby Custom Sort

by cpjolicoeur, August 03, 2008 14:37, 5 refactorings, tagged with ruby, sort, csv, sorting

I had this question recentl...

Cf8a610127d1108dfe67f673320b5fe5 Talk