From 2e7537d942e00ada0ccf7db0c406eb033865409e Mon Sep 17 00:00:00 2001 From: Nikhil Hassija Date: Sat, 26 May 2018 11:01:32 +0530 Subject: [PATCH] fixes #75 --- Python/even_digits_24000652.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Python/even_digits_24000652.py b/Python/even_digits_24000652.py index a47c164..24b0777 100644 --- a/Python/even_digits_24000652.py +++ b/Python/even_digits_24000652.py @@ -9,3 +9,4 @@ # In case of input data being supplied to the question, it should be assumed to be a console input. # # Solution: +print(",".join(map(str, filter(lambda x: all(map(lambda y: int(y) % 2 == 0, list(str(x)))), range(1000, 3001)))))