From 31b1066bbdfb8ab2d7666aa21fe13907802c9a62 Mon Sep 17 00:00:00 2001 From: acastry <33638575+acastry@users.noreply.github.com> Date: Thu, 12 Jan 2023 17:13:16 -0400 Subject: [PATCH] Update Day 5.md Just a one line solution to get the brain working. --- Status/Day 5.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Status/Day 5.md b/Status/Day 5.md index 540695d..42f7b3f 100644 --- a/Status/Day 5.md +++ b/Status/Day 5.md @@ -69,6 +69,13 @@ print(",".join(result_l)) ``` --- + +```python +'''Solution by: Acastry''' +print(*([int(x)**2 for x in (input().split(",")) if not int(x)%2==0]), sep=",") +``` +--- + **_There were a mistake in the the test case and the solution's whice were notified and fixed with the help of @dwedigital. My warm thanks to him._** # Question 17