From b562822f137270ffce7a57183393c386347ccbc4 Mon Sep 17 00:00:00 2001 From: dipu007 <72186394+dipu007@users.noreply.github.com> Date: Fri, 2 Oct 2020 09:05:59 +0530 Subject: [PATCH] Update map.txt --- example-code/map.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example-code/map.txt b/example-code/map.txt index 7c145f731..fa072ff2b 100644 --- a/example-code/map.txt +++ b/example-code/map.txt @@ -11,5 +11,5 @@ def map(func, lst): def halveElements(lst): return map(lambda x: x / 2.0, lst) -input = [2, 4, 6, 8, 10] +input = [2, 4, 6, 8, 10, 12] output = halveElements(input)