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.
Every previous number can be at most half the next number. (2, 3, 10) is ineligible, because 2 > 3/2
This comment is hidden because it contains spoiler information about the solution
Because it's a "polyfill" of ES6's built-in BigInt class
This comment is hidden because it contains spoiler information about the solution
Try doing it by hand first. Then let the computer do what you did.
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
it happens because
So the ATF6: "TGACGT" binds the sequence "TGACGTGACGT" twice at index 1 and 6 with an overlapping T:
the "TGCGTGCGTG" sequence relative to AhR: "TGCGTG" contains an overlapping TG:
Hope it is clear now, cheers!
No problem;)
@Steven Pavlovskii, what the kata lang?
Input is coordinates of all points. You just have to calculate two points which have max distance between them. you have to output the max distance you get.
It is the bitwise XOR operation.
a ^ b
is the same asMath.pow(a, b)
. Just exponents / powers of numbers.Loading more items...