15
metallidog
2 9 22
929/ 1195
Stephen Spears
Last seen 5 years ago
Member for 9 years, 4 months, 21 days
Difficulty Normal
Best reviews / Newest reviews
Commented-Lipen 1
Nice code, short and sweet with good comments More
Third-gyahun_dash 1
It took me half an hour to decipher all of this, but I'm pretty sure I've learned quite a bit. I really like the way map() came in handy here. More
First-saklar13 1 1
I learned two tricks here. First, I imported math for the ceil() method but it wasn't necessary. And second I like --- max(x, x*2-100). Thanks for the lesson. More
First-gyahun_dash 1
Sorted, I didn't think of sorted. Nice code. More
First-spoty 1
Cool, I've never seen zfill() before. I'll add it to my library. Thanks. More
Funny --> functools-dronnix 1
I've never used functools. I'll have to look into this more. More
Pure-nicuveo 1
I've never used or seen the operator module. Thanks for giving me something new to learn. More
Second-gyahun_dash 1 1
zip(*matrix). It took me a while to wrap my head around this, but I think I've got it now. Thanks for the lesson. More
Using regexp-BertrandBordage
Thanks for this. Though it's a bit confusing it did teach me the method re.compile() More
First-fantakeshi
thanks, I didn't think of using % to move to a 12 hour clock. More
First-cardinam
Thanks for this. The more I see regular expressions the more I understand about them. More
Moore Neighbourhood-olega
I like the use of the min() and max() functions. I used if statements to avoid IndexErrors. I'll remember this approach for next time. More
First-kyoheif
OrderedDict is function I've never seen used. Thanks for this. More
Clear-suic
I just learned you can iterate through a list on the same row as the comprehension takes place. Line 16/17. Thanks for this insight. More
if if if-Aaglacrinus
You don't need the 'and' conditions on your if statements. if number%3==0: return "Fizz" elif number%5==0: return "Buzz" elif number%3==0 and number%5==0: reutn "Fizz Buzz" works the same. More
First-RonPeleg
This is an interesting approach. More
First-artemrudenko
Dang, I though my solution was nice. I really need to study reduce() and learn to use it properly like this. Thanks for this. More
First-suic
Thanks for this. I couldn't figure out the nested loop comprehension. More
First-skyJuice
Thanks for this. Every lambda I see gets me closer to fully understanding how to use them. More
First-yama_k_1101 1
I like this solution. You used replace() in place of my join() and split(). Thanks for this. More
1
2 3