12
Reloader
2 9 26
621/ 745
Darko ...
Last seen 2 years ago
Member for 10 years, 10 months, 6 days
Difficulty Normal
Best reviews / Newest reviews
~Shortest-veky 8 1
Why using lambda when you can just: def checkio(data): return [x for x in data if data.count(x)>1] Is there any difference actually? More
First-bryukh 1
Thanks again for helping me in solving this problem! ;) More
First-artemrudenko
Me too... thought about it at the start of solving problem but I'm still not having enough experience to connect expressions like this one, seen in line 7. Great job! More
Thanks to PL-bryukh 1
Great use of 'key'! Way to advanced for my current level of experience :) I suppose that 'lambda' function also iterates through lowercase version of 'text', counting every single element (or character), and then compare elements with 'string.ascii_lowercase' to determine which one is maximal. Am I More
Feeding Pegions-shreekar
Same as mine except I used: if number < 0: return num_of_birds + number else: return num_of_birds Instead of 'min()'. More