31
Cjkjvfnby
10 30 43
5274/ 5695
Andrey Solomatin
Last seen 1 year ago
Member for 11 years, 2 months, 8 days
Difficulty Normal
Best reviews / Newest reviews
Joker-Joker 1
You dont need **re** just use **in** More
First-bukebuer 2
string is not best collection type for queue :) More
First-jcg
[check my way of unpacking cmd](http://www.checkio.org/mission/letter-queue/publications/Cjkjvfnby/python-3/deque/) More
First-krizzis 1
stack is bad name for queue list is not best collection type to implement queue, you can use collection.deque More
First-vakalachev
**print("Some Problems")** there should be no problems by task rules. And you will not see this prints when test system checks you solution. More
First-ksmakkapawee
http://www.checkio.org/forum/post/1618/proper-way-to-check-if-sequence-is-empty/ no: **i.count("PUSH") > 0** yes: **"PUSH" in i** More
First-magdre 1
It is bad practice to catch all exception, better to specify one. Try to find out what will happened in case ''[1::] result[1::] => result[1:] # same effect less code More
First-artemrudenko 1
see operator module 4 of you lambdas are there. More
dict-magdre 1
You code does not fit to screen. It is decrease readability. More
Spelled out-TomTerebus
1 and 4 lines has no sence. Please proofread your solution before publish. More
First-ValentinaMaldonado
If you use variable only once, just dont use it. Convertion to string in line 2 can be placed to line 4. Python style guide recommends to name variables in snake case. You can use int instead of ords. More
Concise-onesoma
I never used str.translate in that way :) You can use *= More
Self documenting-ale1ster 1
Why you name it self documenting? More
First-JamesNippoc
Please follow python code style. More
THY-_THY_
Just return result in line 2, no need to use a variable. More
First-bukebuer 1
See comments [here](http://www.checkio.org/mission/secret-message/publications/theholy7/python-3/first/) More
First-artemrudenko 1
Not only me missed present of **str.isupper** More
Simple re-ale1ster
It is not fits to clear. You can throw away you **re.sub** and use **str.replace**. More
Functional-abesto
If you can import you can use https://docs.python.org/2/library/heapq.html#heapq.nlargest import are prohibited by description "Some builtin functions are closed here: import, ..." You use issue in task checker for your solution. More
Homegrown Functional-hharrison
You call key twice on each compare. So you will have issue in certain cases: (key=next) You need only one call per item. flexible_reduce is just proxy for call another function, you can remove it. More
1 2 3 4 5 6 7 8
9
10 11 12 13 14 15