16
Aldir
3 13 31
1243/ 1445
Last seen 3 years ago
Member for 3 years, 6 months, 9 days
Difficulty Normal
Best reviews / Newest reviews
First-vvm70 1 1
Not bad. My solution is similar, but I sort lists, not reverse them, which is less effective. But why do you create new list instead of len(items) - 1? More
First-IliaLiash
I used split(). This solution is better. More
list comp-Niley
Good solution, but why do you form a new list, when you can return just a slice? More
First-avineshhhhh
Too long and too redundant, but as a beginner I have similar solutions. More
First-kalauroma7997 1
I have the same solution. Clear and simple. More
First-Jitesh_Talreja
Not bad. I didn't know about this list(zip(*l1)) More
Simple-Fermax
Good solution. It's better to change indexes than to operate on elements. More
First - Frequency Sorting-Wakko_Warner
It's too long and redundant. You can sort list in ascending order and then sort it by frequency in descending order. Or use tuple in key argument of sorted function. More
First-mohamedsleymi2016
Interesting solution without tuple. More
using statistics.median-tvylormvde
Nice. My solution is similar, but I use one index variable. More
with some comments-kim.yangjin
Nice solution. Last line could be shorter "return not open_brackets" More
Shortest-mazzi
Very short and very simple. I like it. More
char_indexing func-chur4hella
I think you don't need this condition s[s.find(s[i])] == s[i], because it's always True. More
readable-dwsch.gaming
I have the same solution, but I don't create any variables. join() method returns a string, so you don't need to convert string to string. More
First-kolomiecnew
Good solution, but I think it's better to create list of ints(x), not tuples(x, y). And name it something like pos or pos_zero. More