Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Your solution times out because you are generating each combination, which is beyond O(N^3).
However, you should opt for a recursive approach.
You need to click that button to unlock it, but you will forfeit the kata and will not be able to get honor for it.
Training && training is the key
Now, the leaderboard is updated, you may choose the language at the topright dropdown box. You may also to see overall points / authoring && translation points / honor (gained by solving katas only)
If it were up to me, your place in heaven would be assured.
Thank you.
Thanks bro, i came here searching the explanation of this code.
you can use pythontutor.com to see it in action
but slow
That doesn't work since two '(' would cancell out one '}'... instead consider using a dictionary of counts for each. e.g.
if char in '({[': d[char] += 1
if char in '})]': d[char] -= 1
Me too
https://www.codewars.com/kata/566fc12495810954b1000030
please tell me if this is duplicate ! I hope you find this interesting and unique !
done
done
Initial solution has a typo:
The function name is
how_many_time
(missing the "s")Problem with checker function:
Is this a maths question ? I learned
product
module to solve this question but it didn't work out for n=k=10 !Ops I forgot to do that ! I thought only who have solved can see this comment !
Loading more items...