Skip to content

Instantly share code, notes, and snippets.

@Mizzlr
Created June 13, 2016 09:03
Show Gist options
  • Save Mizzlr/d0621d164faeebee0527a6a97116aedf to your computer and use it in GitHub Desktop.
Save Mizzlr/d0621d164faeebee0527a6a97116aedf to your computer and use it in GitHub Desktop.
The output generated by factorial.py
╒═════╤════════════════╤═════════════════════╕
│ x │ factorial(x) │ math.factorial(x) │
╞═════╪════════════════╪═════════════════════╡
│ 1 │ 0.999575 │ 1 │
├─────┼────────────────┼─────────────────────┤
│ 2 │ 1.99951 │ 2 │
├─────┼────────────────┼─────────────────────┤
│ 3 │ 5.99942 │ 6 │
├─────┼────────────────┼─────────────────────┤
│ 4 │ 23.9991 │ 24 │
├─────┼────────────────┼─────────────────────┤
│ 5 │ 119.999 │ 120 │
├─────┼────────────────┼─────────────────────┤
│ 6 │ 720.006 │ 720 │
├─────┼────────────────┼─────────────────────┤
│ 7 │ 5040.08 │ 5040 │
├─────┼────────────────┼─────────────────────┤
│ 8 │ 40320.8 │ 40320 │
├─────┼────────────────┼─────────────────────┤
│ 9 │ 362888 │ 362880 │
╘═════╧════════════════╧═════════════════════╛
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment