40
oduvan
15 34 57
10047/ 10664
Last seen 1 day ago
Member for 13 years, 10 months, 8 days
Difficulty Easy
love it!

Best reviews / Newest reviews
Say Hi-svartmetall 17
so many likes. I hope people will also check [our article about f-string](https://py.checkio.org/blog/pep-498-f-strings-python-36/). More
Shortest-veky 15
"Harder, Better, Faster, Stronger" - Daft Punk "Harder, smaller, shorter" - Veky :) More
1-liner: +marriage-przemyslaw.daniel 4 1
Just today I was thinking.. maybe we should make one more funny mission? :) More
First we take Manhattan...-veky 4 1
If I get this code for a production solution, I would ask to refactor it. More
re.match(ver.2)-kurosawa4434 3 1
this is a great example of fr-string :) More
Boo-Juge_Ti 3
Ok. It's time to open CheckiO Art section More
Straightforward-Pouf 3 1
a video code review from @veky https://www.youtube.com/watch?v=bAea_X5cCJo More
First-eugen2005 3
[Here](https://py.checkio.org/mission/is-even/publications/eugene100372/python-3/first/share/e2ea5c7705f3512261cb241b44526770/#comment-116766) I've explained how `%` works Operator `not` first converts int to bool... * 0 = False * any non-zero value = True ... then inverts * True = False * Fals More
Practical-PositronicLlama 3 1
if l % 2 == 1: if l % 2: More
Regexes all the way-ale1ster 2
I didn't expect that it is possible to be solved by RE only :) More
Useful import-Slowicide 2 1
line 4-6: can it be replaced by cnt = collections.Counter(data) ? More
Composition of Functions-flpo 2 1
A case where solution to the puzzle is harder than the puzzle itself :) More
min of dict of enumerate of zip of splitlines of strip by count of columns of argument of key of min-veky 2 1
solution's name looks like a new programming language. You can call it CiO-Spoiler :) More
First-matesik1995 2
I don't think it should have so many vote though... More
Chessboard-veky 2
we should make a video code review around Funny Addition some time :) should be interesting :) More
Composition of Functions-flpo 1 1
I feel like Python should have something built-in for compose function. I'll try to find. :) More
First-Sim0000 1
I think having a simple marker `is_abs` can replaces lines 2 and 9 by: is_abs = path.startswith('/') if is_abs: return '/' More
First-Moff 1
Wow, I would say it is a very creative solution, especially line 5 More
First-alex.kov 1 1
немного можно преобразовать. Во-первых можно сделать так, что если длинна меньше указанной, то просто вернуть False, тогда будет меньше отступов: def checkio(data: str) -> bool: if len(data) < 10: return False if data.isdigit(): return False More
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16