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.
This solution is incorrect. It's an early submission. It passes random tests on occasion, but contain bugs.
I'm using python.
The test case is obviously false :
[[77033412951888080, 14949283383840498], [117787497858828, 14949283383840498], [2526695441399712, 14949283383840498]] should equal [[77033412951888085, ...]]
it should be:
[[77033412951888080, 14949283383840498], [117787497858828, 14949283383840498], [2526695441399712, 14949283383840498]] should equal [[77033412951888080, ...]]
In my solution, 7.703341295188808e+16 = 77033412951888080 all the way to the end which should be the correct answer. I can't find a way to get some precision error such as 7.703341295188808e+16 -> 77033412951888085 to match what yongescobar is telling.