23
mikaeldovbnia
4 19 37
3071/ 3195
Mikael Dovbnia
Last seen 38 minutes ago
Member for 2 years, 4 months, 29 days
Difficulty Normal
Best reviews / Newest reviews
Simple recursion-hanpari 4
Take the string "abcabcffababcabcffababcabcffab" and try your code on it. You have double recursion in your code, so it is O(2 ** n). This string will run minutes. I tried your code with this and used the time module to calculate the minutes the code will run. It was running 201.6750979423523 second More
[py3.8+] 1-liner/98 chars with walrus/shifts operators-Phil15 1 1
I don't understand what are you doing here. More
We can sum booleans (False == 0 and True == 1)-Phil15 1
Nice clear solution. Really like how you made the part where you make the sum of 'items'. Didn't think of that. More
n,i,t picking-veky 1
Best solution I saw for this mission. Really short. More
Use FP, Luke!-obone 1
I would really say it's a clear solution. It is not really creative. Nice. More
1 line, clear math-kdim 1
It's a bit hard to read, but it is nice to me. More
1 line, clear math-kdim 1
And at least it is shorter than mine. I have a lot more code. Haha. More
There must be a better way-jakubbortlik 1
Well that's a huge solution, but it's clear and good. I like it. 👍🏻👍🏻👍🏻 More
Use FP, Luke!-obone 1
And I really did with 'zip_longest' from itertools. You can check my solution on page 20, and the name is 'Zip It'. It is in the clear solutions page. More
join replace-kdim 1
Smart solution. And ver short. More
pop()-kurosawa4434 1
Nice solution I didn't think to do the things you did in 'others'. It is somehow similar to mine. 🤩🤩🤩🤩. More
Regex will kill me-Kolia951 1
Great. I like the regular expression. Very complicated regex, but still great! More
First-dietmuridebu
Nice solution. I didn't think to make it with zip_longest. Nice. More
Ascii Based Solution-UriyaBA
I don't understand what old is.Nice. More
for else-veky 1
You can delete the else in the solution because if succ won't reach three it will automatically return False. More
in set-oduvan
Very short and unpredictably clear.👍🏻 More
filter-veky 1
This is the shortest solution I saw. I asked ChatGPT about how to shorten this code, but it said this is the shortest version. More
Zip It-mikaeldovbnia 1
Do you think this is a clear or creative solution? More
36-liner: 7 easy examples-przemyslaw.daniel
I really like your solution. Are there many different solutions?🤩🤩🤩🤩.Love it! More
First-dietmuridebu
Nice solution. I have a similar one.Also, with 'zip_longest'. More
1
2