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

Best reviews / Newest reviews
First-ndj_ys 1
if you want to convert 7 -> 07 you probably don't dict. Check how str.format works More
Modular Cramer's rule-martin_b
wow.. this is too many math here. Thanks More
First-Shikou__Yamaue
well, this is beautiful each step has 4 lines :) More
collections and itertools-lsdda
not bad, but it is always better to do improrts outside of function More
First-boris.pilka
it is good that you know enumerate. More
Solution Number Length-RobWcool 1
in order to solve this problem you don't need any new variables in your function. Why? More
First-DavidVargas 1
I think it is way too many comments More
Python sort with function keys-wtprogrammer7
wow... this is a lot of traces here :) More
First-Toma__Kara
when I see for...append, I always think yield More
Life is Short!-PHANTOM0308
a fun way to use bool as index for predefined list More
Acceptable Password I-JimmyCarlos
I'm wondering what is a better way to do `a > 6` or `a >= 7` ? More
Using len, string-barborakacerovska
password is str already. No need to explicitly convert it More
First-A1berrt 1
If you create a variable just to return it right after, means you don't need that variable. just do if conditions: return else: return More
First-Patrick_vG
`len(elements)` can be literally removed More
First-A1berrt
very good. Keep up a good work More
simply-rybld2
Constants can be defined outside the function More
first-kazuki.h
`sorted(stones, key = lambda x: -x)` = `sorted(stones, reverse=True)` More
first-kazuki.h
`stones[0] if len(stones) != 0 else 0` = `stones[0] if stones else 0` More
My first solution for min/max task.-Oleksandr_Zaliskyi
this is weird. Max and min functions are so different. More
1 2 3 4 5 6 7 8 9
10
11 12 13 14 15 16