36
U.V
15 40 51
8141/ 8195
Last seen 2 days ago
Member for 2 years, 2 months, 13 days
Difficulty Easy
Best reviews / Newest reviews
1-liner max with key solution (datetime)-swagg010164
Converting dates is not needed at all. It's as simple as: get_latest = max More
First-mortonfox
In this case we can compare strings B-) More
Clear & Educatinal-U.V 1
Yes, but this solution is fine, isn't it ? More
injectivity-veky 1
It's new for me this original using of __ __import__ __ . I put this trick in my collection ! More
First-elektronky777
This solution is NOT SPEEDY ! It is 50 times slover then another speedy solution of ## maybe First ## (https://py.checkio.org/mission/team-play-2/publications/maybe/python-3/first/?ordering=most_voted&filtering=all) More
second; recursive-pokosasa
Using recursion in this case is not effective. This solution have only educational and practice goal in resursion. More
First-Oleg_Novikov
Yours solution was suggested for random rewiew as **SPEEDY** solution and i will discuss speedy aspects. 1. Solution will be more speedy if use walrus operator in multiple **pow()** operations. while pow(x,x)< number: x +=1 root_num = 0 if pow(x,x)==number: retur More
named group-gyahun_dash
I have checked solution and get assertion error at test assert decode_vigenere(u"AAAAAAAAA", u"ABABABABC", u"ABABABABC") == "AAAAAAAAA", "ABABABABC" where valid key is "ABABABABC", but not "ABAB" More
del-DiZ
Interesting solution. But what title 'del' means ? More
First-Molot
I think that pandas is too heavy weapon to solve this task B-) More
Nested defaultdict-Rcp8jzd
This solution is enought clear and documented More
Nested dictionaries-kkkkk
Solution is well documented and clear More
First-hkgok1
Lines 5-10 : better to set all items of **table** to **price+1** and clear table[0] table = [price+1 for i in range(price + 1)] table[0] = 0 Line 13 and later: Value **j** is not neded since everywere is used **denominations[j]** for denomination in denominations: More
First-Phil15
Short and clear dolution ! **re** make it so, More
Two rules-nickie
In my mind mines = sum(t[2]==9 for t in neighbors) looks better and clearer than mines = sum(1 for t in neighbors if t[2] == 9) More
Concise algorithm-Igor_Sekretarev
It's more elegant to use **** in line 11 for i, column in enumerate(, start=1): . . . return [pos+1, i, pos+len(word), i] against for i, column in enumerate())): . . . return [pos+1], i+1, pos+len(word), i+1] since **i** now is agree More
29-liner: lambda classmate-przemyslaw.daniel
Using class => short & elegant solution ! More
Dict.get-Red_Ale
Clear and well commented solution. More
First we take Manhattan...-veky 1
I find this old solution interesting B-). More
A little bit RE-oduvan
Re is powerfull package, but i don't like it B-( More
1 2 3 4
5
6 7