Skip to content

Instantly share code, notes, and snippets.

@bluegod
Last active August 29, 2015 14:05
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 bluegod/fa9fdb4a637df39de246 to your computer and use it in GitHub Desktop.
Save bluegod/fa9fdb4a637df39de246 to your computer and use it in GitHub Desktop.
#One line (command line) solution in Ruby to the Lattice paths problem for a configurable 20x20 frame.
echo "r=20;n=r+20; ((0...r).inject(1) do |m,i| (m * (n - i)) / (i + 1) end)" | irb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment