Skip to content

Instantly share code, notes, and snippets.

@Canx
Created February 26, 2012 18:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Canx/1918215 to your computer and use it in GitHub Desktop.
Save Canx/1918215 to your computer and use it in GitHub Desktop.
kata 4: data munging (part 1)
data = Array.new
File.foreach("weather.dat") { |line|
if line =~ /^\s+([0-9]+)\s+([0-9]+)[*]?\s+([0-9]+)[*]?/ then
data << {:day => Integer($1), :spread => Integer($2) - Integer($3)}
end
}
puts data.min { |a,b| a[:spread] <=> b[:spread] }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment