Hey. Hope you have been enjoying the series so far. Today is the Day 5 of the #100DaysOfCodeChallenge. Received a problem previously asked by Jane Street (refer the hyperlink for the company details) with a medium tag to it. This question is a true puzzle and can be solved in a minute if your functional programming understanding is strong.
You may get confused with the question, just like the way I did. I will try my best in putting the solution in the simplest way possible. You can always reach out to me if you need help.
PermalinkThe Question On Day #5:
cons(a, b) constructs a pair, and car(pair) and cdr(pair) returns the first and last element of that pair. For example, car(cons(3, 4)) returns 3, and cdr(cons(3, 4)) returns 4.
Given this implementation of cons:
def cons(a, b):
def pair(f):
return f(a, b)
return pair
Implement car and cdr.
PermalinkExplanation
The question is a bit confusing but let us try to understand it clearly.
consis a function which takes two inputs (consider integers). It returns a value which is an function defined inside itself, i.e.pair.pairis a function which takes a functionfas input and returns the return value of its input function, i.e. the return value of the functionfis returned bypair.- Now
fis a function which will return a value. fis the key to all our solution.
PermalinkAlgorithm
- The end value obtained on calling the function cons is a function pointer pointing to the
pairfunction. - The required implementation goes as follows:
PermalinkPython Code
Output 3 4
PermalinkExplanation
When car(cons(3,4)) is called,
- cons(3,4) is invoked in the first place.
- cons returns the function pair function.
- The parameter passed to the
carfunction is thepairfunction. carfunction returns the value returned by calling thepairfunction.pairfunction takes a function as input, so we pass theleftfunction to it.pairfunction returns the value obtained by passing a, b to a a functionf. So, ourleftis the functionf, which takes a, b as input and returns a as output to thepairfunction.- Now the same a is returned by
pairfunction to thecarfunction, which will again return the same value of a. - Now a is returned at the end and printed.
- Same goes with the function
cdr.
#The Python visualiser is very much needed to understand this logic more clearly, please refer it here.
I hope you were able to understand this problem. Feel free to reach out for any query clearance.
Thanks and cheers:)
Subscribe to our newsletter
Read articles from Binary Thoughts directly inside your inbox. Subscribe to the newsletter, and don't miss out.




Article Series
100 Days Of Code
Day #1: My Start With 100 Days Of Code
Hi! I'm Manish. I was wondering what to do in this COVID-19 pandemic, to stay a bit productive and t…
Day #2: Product of all the elements of the array, except self.
Hello, today is the Day 2 of the #100DaysOfCodeChallenge. Received a problem previously asked by Ube…
Day #4: Finding the smallest positive missing integer from an unordered list using Python.
Hey, today is the Day 4 of the #100DaysOfCodeChallenge. Received a problem previously asked by Strip…
Day #5: Functional Programming with Python.
Hey. Hope you have been enjoying the series so far. Today is the Day 5 of the #100DaysOfCodeChalleng…
Day #6: XOR Doubly Linked List
Hello. Today is the Day 6 of the #100DaysOfCodeChallenge. Received a problem previously asked by Goo…
Day #7: Number of possible decodable messages
Hello everyone. Today is the Day 7 of the #100DaysOfCodeChallenge. And it's a week!!!! Received a pr…
Day #8: Number Of Unival Trees Using Python
Hello everyone. Today is the Day 8 of the #100DaysOfCodeChallenge. Received a problem previously ask…