Revisions

gist: 178887 Download_button fork
public
Public Clone URL: git://gist.github.com/178887.git
Embed All Files: show embed
compressed-odds.js #
1
2
3
4
function odds(n, p) { return n > 0 ? (n / p) * arguments.callee(n-1, p-1) : 1; }
 
odds(1,1230423010401234021);
//Win!