Skip to content

Instantly share code, notes, and snippets.

Created March 12, 2013 19:37
Show Gist options
  • Save anonymous/5146258 to your computer and use it in GitHub Desktop.
Save anonymous/5146258 to your computer and use it in GitHub Desktop.
LCM
1.9.3-p327 :005 > 1.lcm 1
=> 1
1.9.3-p327 :006 > 1.lcm 2
=> 2
1.9.3-p327 :007 > 2.lcm 3
=> 6
1.9.3-p327 :008 > 6.lcm 4
=> 12
1.9.3-p327 :009 > 12.lcm 5
=> 60
1.9.3-p327 :010 > 60.lcm 6
=> 60
1.9.3-p327 :011 > 60.lcm 7
=> 420
1.9.3-p327 :012 > 420.lcm 8
=> 840
1.9.3-p327 :013 >
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment