Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Status/Day 5.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down