5 kyu
Church Booleans
336 of 710PaulBlanche
Description:
There are a few Katas about Church Numerals so let's talk about booleans.
In lambda calculus, the only primitive are lambdas. No numbers, no strings, and of course no booleans. Everything is reduced to anonymous functions.
Booleans are defined thusly (this definition is preloaded for you) :
const True = T => F => T;
const False = T => F => F;
Your task will be to implement basic operators on booleans (using only lambdas and function application) : Not
, And
, Or
and Xor
.
To help, the function unchurch
comes preloaded, and returns the native boolean given a church boolean :
unchurch(True); //true;
Note: You should not use the following:
- numbers
- strings
- booleans
- boolean operators
- objects (curly brackets) or arrays (square brackets)
- regexp
- "new"
Fundamentals
Similar Kata:
Stats:
Created | Apr 6, 2018 |
Published | Apr 9, 2018 |
Warriors Trained | 2802 |
Total Skips | 292 |
Total Code Submissions | 5239 |
Total Times Completed | 710 |
JavaScript Completions | 336 |
Haskell Completions | 203 |
Python Completions | 216 |
λ Calculus Completions | 51 |
Total Stars | 58 |
% of votes with a positive feedback rating | 92% of 162 |
Total "Very Satisfied" Votes | 141 |
Total "Somewhat Satisfied" Votes | 16 |
Total "Not Satisfied" Votes | 5 |
Total Rank Assessments | 20 |
Average Assessed Rank | 5 kyu |
Highest Assessed Rank | 4 kyu |
Lowest Assessed Rank | 7 kyu |