Skip to content

Instantly share code, notes, and snippets.

@danreedy
Created December 10, 2010 05:06
Show Gist options
  • Save danreedy/735814 to your computer and use it in GitHub Desktop.
Save danreedy/735814 to your computer and use it in GitHub Desktop.
What the heck, here's a 2 line solution to the engine yard contest. Usage === straight_bet(13,100_00)
require 'open-uri';
def straight_bet(bet,bid); (open('http://roulette.engineyard.com').read.gsub(/[^\d]/,'')==bet.to_s) ? 35*bid : 0; end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment