Created
April 3, 2019 07:52
-
-
Save ryu1-1uyr/ed63d90dd57f48380f25e874e4fbf97d to your computer and use it in GitHub Desktop.
ドヤ顔,10じゃなくてもいける
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(f => (g => m => (f(g(g))(m))) | |
(g => m => (f(g(g))(m)))) | |
(f => (n => ((n <= 2) ? 1 : (f(n-1) + f(n-2)) ) ))(10) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment