Skip to content

Instantly share code, notes, and snippets.

@Ismael-VC
Forked from rknuu/factorial-table.jl
Created February 10, 2016 03:09
Show Gist options
  • Save Ismael-VC/e9842640da6271b302cc to your computer and use it in GitHub Desktop.
Save Ismael-VC/e9842640da6271b302cc to your computer and use it in GitHub Desktop.
Julia is awesome...
# Julia is fully unicode aware and if you use your variable and function
# names just right, you can express your anger like no other language.
⋰┛ಠДಠ┛⋱彡┻━┻(n) = n < 2 ? n : ⋰┛ಠДಠ┛⋱彡┻━┻(n - 1) + ⋰┛ಠДಠ┛⋱彡┻━┻(n - 2)
@elapsed ⋰┛ಠДಠ┛⋱彡┻━┻(25) # 0.00266
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment