17
autodidact_ks
5 17 30
1664/ 1695
Last seen 1 year ago
Member for 7 years, 7 months, 6 days
Difficulty Normal
Best reviews / Newest reviews
First-autodidact_ks
Simple List Comprehension with Filter More
Using divmod and a dictionary .. and life became easier ;)-autodidact_ks
My first (ugly) try you can see here: https://py.checkio.org/mission/calls-home/publications/autodidact_ks/python-3/probably-the-unelegant-way/ I like the readability of code in this solution. Or e.g line 12, but is this pythonic? I see some solutions using collections.defaultdict() ... i dont see More
double loop and list comprehension-autodidact_ks
I don't get why text[offset:start-1:-1] doesn't work if start == 0. So the code is for an if-else-statement longer... More
First-aquazul
Sweet logic, but hard to read! More
Replace - split - reverse - join-Alexander_Antonov
Hello, i think you can save the replace(' ', '| |') by working with split(" ") and " ".join(...). This should make the code more readable. Many greetings More