• Merzix's Activity

Liked a comment created by Phil15 for forum post "Mistake in the preconditions"
@oduvan I sent a pull request about that.
In the problem, it says that the array must be 3x3 <= array <= 10x10, but when you are going to solv
Liked a comment created by Phil15 for forum post "Incorrect test?"
It's not feedback but advice you want.

Found in github repository:

    class Rookie(Warrior):
    
Liked mission "Fortress Cannons"
Defeat the legions.
Liked a comment created by fed.kz for forum post "Test 26 problem."
Maybe your method `move_units()` works incorrect
Liked mission "Visibilities"
Limit visibilities by putting black boxes in a particular way.
Liked mission "Signpost"
Find a path following the arrows
Liked mission "Surjection Strings"
Check that the 2 given strings are isometric
Liked a comment created by Phil15 for forum post "*** 2019 ***"
Happy New Year 2019 to the whole CheckiO community! I learned a lot thanks to you all!
Liked a comment created by brubru777 for forum post "Only returning 1?"
Maybe it's because you split the text. You should not need to do that.
Liked forum post "*** 2019 ***" created by Tinus_Trotyl
Wish y'all have a lot of coding fun in 2019. Happy new year !!!
Liked mission "Colder-Warmer"
Let's play a game of hide and seek! Use your coding skills to find your hidden opponent!
Commented a forum post "New Task "Colder-Warmer"" created by bryukh
A little typo in the description in Russian: "б" instead of ",": > "Холодней" - это как -1**б** "Те
Commented a forum post "Problem with check" created by grosserd81
You do not need to use `print()` because it returns None. def between_markers(text,init,end):
Liked mission "Net Game"
Put these nets in order
Liked a comment created by Sim0000 for forum post "Problem conditions are wrong"
@oduvan, he found precondition error. Please fix it.
In the problem page, it says that 1 < |text| <= 20, but if you don't do it as 1 <= |text| <= 20, it
Liked a comment created by Phil15 for forum post "Not everything work. 10 times I changed approach)"
`most_common(1)` just keep the first, it's not what you need in each case so just `most_common()`.

>>> Counter('abracadabra').most_common(3) [('a', 5), ('r', 2), ('b', 2)] The `lambda x: -x[
Liked forum post "Error in mission text "caps lock"?" created by JohanL
Hi, Looking at the tests for the "caps lock" mission, it seems that shift-A is NOT in fact pressi