Created
April 18, 2022 11:45
-
-
Save Pitometsu/3898f5aeedd787a2ff2efdb82333f922 to your computer and use it in GitHub Desktop.
partial application
This file contains hidden or 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
Yan Shkurinskiy, [18/4/22 8:41 AM] | |
foo :: Int -> Int | |
foo x = map fib [0..] !! x | |
where | |
fib 0 = 1 | |
fib 1 = 1 | |
fib n = foo (n-2) + foo (n-1) | |
foo :: Int -> Int | |
foo = (map fib [0..] !!) | |
where | |
fib 0 = 1 | |
fib 1 = 1 | |
fib n = foo (n-2) + foo (n-1) | |
первый выполняется долго, второй - быстро |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment