41
Tinus_Trotyl
14 39 62
11705/ 11730
Awesome Team Tinus Trotyl
Last seen 2 hours ago
Member for 7 years, 2 months, 14 days
Difficulty Normal
A little bit of Python with greetings from the Netherlands.

Best reviews / Newest reviews
list compare-Eskimon 2
In contrast to the list.sort() method, the sorted() function accepts any iterable, so you didn't need to 'list' first. See also : [Sorting Basics](https://docs.python.org/3/howto/sorting.html?highlight=sorted) More
without capitalize-Sim0000 1 1
Hi, Some thoughts about the empty string case : I did ask myself this a few times over too and I think string can be empty (it's still a string, you can refer to it, give it a name etc.) but an empty sentence ? Which is (in case of a string) the part represented between the quotes, right ? More
min, max-Sim0000 1
Hey . . . you can do things like `min(['1:13', '1:26', '1:11'])` ? Thanks, learned something new today :-) More
First-Sim0000 1 1
Hi, As suplement to your question (if this is what you mean) : "Why python doesn't have enum ?" You can use "range()" also for numbering tasks e.g. (HIGH_CARD, ONE_PAIR, TWO_PAIR, THREE_OF_KIND, STRAIGHT, FLUSH, FULL_HOUSE, FOUR_OF_KIND, STRAIGH More
one liner-Sim0000 1
Oh yeah . . . of course, how could that slip my mind? :) !!! AWESOME !!! More
Having fun with Tinus_Trotyl's solution :)-suic 1
Whow . . . NICE . . . ! ! ! You did what I looking for (connecting an logical output value to add/discard - or remove in your case, line 9 ÷ 13). Clever use of `and not`, you taught me something new today, thanks :) More
fstring-kurosawa4434 1
Whow, great programming !!! ________________________________ More
4-liner!-Merzix 1
Clever, tidy and kind of funny in line 5, . . . I like it :-) More
First-Merzix 1 1
Hi, Why didn't you simply `max(data .... )` , no order to reverse, no index . . . ? More
combination-Sim0000 1
Good choise of indetifier names, reads like a story ! More
ale1ster's Pythonified-veky 1 1
Eureka . . .You've got me some rook breakers in complexified pythoneering :-) More
Symmetry-veky 1 1
As neat as from a schoolbook !!! More
for f in str.isupper, str.islower:-flpo 1
Btw, cool list of strings to list of sets conversion :) More
Use FP, Luke!-obone 1
Very well directed use of FP, Luke! More
__lt__-veky 1
Again . . . yours = in_shorthand(mine) ;-) More
my simplest-Tinus_Trotyl
anagram(x) returns a sorted list of the lowercase charaters w/o spaces from string for easy verifying. More
First, not using list.count(element)-steli
Hey, cool . . . and you could even rewrite the whole functionbody like : return [data[i] for i in range(len(data)) if data[i] in data[:i] + data[i+1:]] More
At last in working order .... thank you Dahlia !!! -Tinus_Trotyl
Replacing args[0] by list(args[0]) realy did it :-) More
First-michael.kej
Clever replacement, I like it. More
1
2 3