We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
In binarytrees and merkeltrees, for bit-shifting, you are using 2 ^ x, which calls pow(). You should use 1 << x like you do in other languages.
2 ^ x
1 << x