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.
Thank you, B1ts, I solved it! But I'm not sure whether it handles everything correctly. Tests are random... Anyway, can't way to see others' solution 8-)
ok, replying myself: I've just passed example tests, and the step-by-step debug info works for real tests.
Python translation: uncommenting
see_states = True
doesn't seem to work (I'm only told my solution was wrong and the expected final answer, but no step-by-step info to help me debugging), at least for tests (I did not submit my solution). Or, is it designed to work with "real" test cases only so I have to debug the example tests on my own?ahhhh... you're right! I misread this part. Thank you!
huh? I thought it only destroy itself if it LANDS on a gem of its color. What about this:
First,
rB
lands on the ground on step 1, then a vertical pairRR
lands immediately to its left on step 2. Willr
destroy BB to its left and also destroy itself in step 2? If no, then we can throw another verticalRR
onr
then theoretically we got a 2x2 red gem containing one crash gem.Oh, thanks! Then I'm giving myself an additional challenge to minimize the time spent from submitting my first solution to solving this problem 8-)
Another small question: can crash gems be part of a power gem? I think not, but I can't find a clear rule about it. Technically, a crash gem also has a color anyway.
Oops, I was in a hurry when replying the last time, and now that I found I didn't make it clear that in my last example, S,1,2 are all red gems, so they cannot merge with Green gems. So maybe 1 expand left one, 2 cannot expand? Anyway, I'll try myself soon, and thanks again!
Thank you! I'll try.
Thanks! That's very clear. Just to confirm: Power gems are processed from top to bottom, left to right? For example:
We process 1 first, so 1 is able to expand, but 2 cannot. If we process 2 first then only 2 can expand.
Also, merging can take several steps, like this?
1 first expands to left and right, then expand down so all of them merge into a giant power gem?
This is an intersting problem and I've already started coding. However, it's not very clear to me that how to expand exsiting Power Gems. Suppose the following board just after dropping the pair (I don't know whether it's a reachable state, but...)
All the gems are red, the number denotes the id of power gems (0 are indivial, 1 is the 1st power gem, 2 is the 2nd power gem). After merging individual gems:
Now, will all the gems (2 individual gems + 4 power gems) merge into a giant power gem? If not, what's the exact rule of merging? Thanks!
EDIT: board in the last edition was wrong...