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.
Python devs be like
Oh, well, i thought i have misunderstood smth, but not smth so obvious. Thanks!
Who said indexes have to match? You need to look for index in the 2nd sequence that has number that is also part of base sequence (the earliest match, obviously).
Is there some kind of a mistake?
In base sequence [1, 2, 4, 8, 16, 22, 26] 26 is 7th.
In sequence with seed 3 [3, 6, 12, 14, 18, 26] 26 is 6th, so its impossible to get right answer if we want numbers with same indexs.
I thought this is part of the kata, but in sequence with seed 5 [5, 10, 11, 12, 14, 18, 26] 26 is actually also 7th, so the numbers have same indexs and are convergencing.
Am I missing something?