40
oduvan
15 34 57
10059/ 10664
Last seen 13 hours ago
Member for 13 years, 10 months, 21 days
Difficulty Easy
love it!

Best reviews / Newest reviews
template-veky 1
Video Code Review https://www.youtube.com/watch?v=MjQsEJoYEFU More
Second-gyahun_dash 1
I would put it in creative category More
First-maja.minnaert 1
too many tabs. Same solution but without that many tabs: def end_zeros(num: int) -> int: if num == 0: return 1 if num < 9: return 0 x = num y = 0 while x > 9 and x % 10 == 0: y += 1 x More
Clear-LAyer_8 1 1
I think those two functions have something in common :) Line 3: I think you don't need function list here More
First-modolee 1 1
you can do simplier else -delta.days you can also use abs function More
First-eugen.stegnij 1 2
Hi :) It is not a bad solution. But I think it will be harder for you to expand it when you need to add thousands. So would definitely take a look on other solutions from leader board. In terms of code stylistic it is a good solutions. Some mirror issues can be fixed such as too long lines or miss More
sorted-Cjkjvfnby 1 1
I like the idea here of not using the third function http://www.checkio.org/mission/min-max/publications/samulih/python-27/first/ More
"Non-unique Elements"-RockeyDon 1 1
line2: if you change -1 to 1 it will work anyway. Do you know why? More
"Monkey Typing"-RockeyDon 1
line3: you don't need to use function list More
First-fomenbox 1
Отличное решение. ) перед .split не надо. More
First-Marshall00 1
you don't need to use `else` here More
First (='ω'=)-Magu 1 1
good, except you don't need square brackets in sum. So you work with generator instead of list comprehension More
Najfajniejsze rozwiązanie-magda_kudrycka 1
I'm wondering. How this solution gets so many up-votes More
First-viktor.chyrkin 1 1
Imagine how much easier it could be to read. enemy_mark = 'X' if your_mark == 'O' else 'O' More
First-eugene100372 1
The % does two things, depending on its arguments. In this case, it acts as the modulo operator, meaning when its arguments are numbers, it divides the first by the second and returns the remainder. `34 % 10 == 4` since 34 divided by 10 is three, with a remainder of four. More
~Shortest-veky 1 1
I gave you -2 just to get a cool number. I hope you don't mind More
re.sub-Sim0000 1 1
Wow, now I learn "nonlocal" function More
keys()-kurosawa4434 1 1
minus!!! I didn't even know that this is legal :) 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-Rounin 1
this is a pretty creative, why "Uncategorized" ? :) More
1 2
3
4 5 6 7 8 9 10 11 12 13 14 15 16