13
texom512
2 11 25
743/ 845
Authmane Terki
Last seen 3 years ago
Member for 9 years, 9 months, 5 days
Difficulty Normal
Best reviews / Newest reviews
Slice-bryukh 2
List comprehensions are useless here. More
Simple-Fermax 2 1
"c += 3", "c += 1" and "c += 2" are clearer! More
First-RRRQ 1
1. Strip those useless and awful spaces. 2. "word.find( "cc" ) == -1" -> "'cc' not in word" More
First-Sim0000 1 1
Please be honest, how long you took to do that? More
Counter-Sim0000 1
Now I know Counter ;-), thank you very much! More
100% Clear-texom512
THIS CODE IS OLD AND AWFUL! I UPDATED MY SOLUTION HERE: http://www.checkio.org/mission/roman-numerals/publications/texom512/python-3/5-lines-and-clear/ More
First-texom512
I UPDATED MY SOLUTION HERE: http://www.checkio.org/mission/flatten-list/publications/texom512/python-3/second/ More
100% Clear-texom512
Here's the solution without exceptions: http://www.checkio.org/mission/even-last/publications/texom512/python-3/second/ More
First-texom512
I UPDATED MY SOLUTION HERE: http://www.checkio.org/mission/broken-clock/publications/texom512/python-3/simple-and-clear/ More
Simple and clear-texom512
I UPDATED MY SOLUTION HERE: http://www.checkio.org/mission/calls-home/publications/texom512/python-3/5-lines/ More
First-viktor.pecheniuk
Useless spaces and "type(x) != list" is better than "not isinstance(x, list)". More
100% Clear-texom512
THIS CODE IS OLD AND AWFUL. I UPDATED MY SOLUTION HERE: http://www.checkio.org/mission/brackets/publications/texom512/python-3/simple-and-only-5-lines/ More
First-texom512
I UPDATED MY SOLUTION HERE: http://www.checkio.org/mission/weak-point/publications/texom512/python-3/4-lines-and-clear/ More
First-xiongbiao
"if i[1] == 'U':" is not clear. That's better: "if i.startswith('PUSH'):" More
Simple and clear-texom512
THIS CODE IS AWFUL. I UPDATED MY SOLUTION HERE: http://www.checkio.org/mission/verify-anagrams/publications/texom512/python-3/2-lines-and-clear/ More
Simple and clear-texom512
Sorry I should have used Heron's formula. More
7 lines and clear!-texom512
Sorry the [] are useless in all(). More
100% Clear-texom512
THIS CODE IS OLD AND AWFUL. I UPDATED MY SOLUTION HERE: http://www.checkio.org/mission/house-password/publications/texom512/python-3/second/ More
Very Clear-texom512
THIS CODE IS OLD AND AWFUL. I UPDATED MY SOLUTION HERE: http://www.checkio.org/mission/median/publications/texom512/python-3/4-lines-and-clear/ More
First-cdthurman
"elif len(stack):" -> "elif stack:" More
1
2