9
chros
1 5 10
272/ 445
Last seen 10 years ago
Member for 10 years, 6 months, 16 days
Difficulty Normal
Best reviews / Newest reviews
DOX and XOX-veky 1 1
"it was hard to write, it should be hard to understand" ;-) More
First-diptiranjan 1
instead of comparing with ord() you could have just checked each letter with letter.isidigit(), letter.isupper(), and letter.islower() your solution will not work for special letters, like german "umlauts", etc... More
Thanks to PL-bryukh
great, short, and functional solution. me likey ;-) More
First-apranav19
simple and readable solution. however, as you might have noticed, the same schema is used for the roman literals for the hundreds, tens, and ones. putting this scheme into a function would considerably reduce the length of your solution. More
Second-melazyk
nice and concise solution. i like the idea of joining the FIRST_TEN and SECOND_TEN lists.. More
First-teddyxing
simple and good solution; just a short notice: instead of writing "n=length/2 n=int(n)" you could just have used integer division: n = length // 2 More
First-FeixiangYin
just a hint: use the list.count() function to save you some work ;-) More
Dijkstra's Forever !-Miaou
wasn't the question to just find one way through the labyrinth, not necessarily the shortest one? using dijkstra for this seems a bit like "shooting with cannons on sparrows" ;-) More