I am Armando Cordova and:
🏠
WFH since January 2020
- North Carolina, USA
- https://corlaez.com
- in/corlaez
- https://stackoverflow.com/users/3000729/corlaez
Pinned Loading
-
combinatorsYandU.js
combinatorsYandU.js 1// Y combinator's lambda calculus formula:
2// Y = λf.(λx.f(x x))(λx.f(x x))
3// Single line Y combinator implementation:
4// const Y = f => (x => f(v => x(x)(v))) (x => f(v => x(x)(v)))
5// My prefered (2 line) Y implementation (more readable IMO)
-
Flatten an Array!
Flatten an Array! 1# Flatten an array.
23## Requirements
4You will need node js to run this array flattener.
5 -
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.