
Super Root
Square roots, cube roots, 4th roots... each are too boring for Nicola. He needs to find the super root! With your help he will almost certainly find it.
The super root of a number N is the number x , such that x x = N .
The result should be accurate so that x x ≈ N±0.001 . Or N - 0.001 < x x < N + 0.001 .
Input: A number (N) as an integer.
Output: The super root (x) as a float or an integer.
Example:
super_root(4) == 2 super_root(27) == 3 super_root(81) == 3.504339593597054
How it is used: This concept can be useful for the cryptography. And you will look how work your calculator then calculate roots.
Precondition:
1 ≤ number ≤ 10 ** 10
CheckiO Extensions allow you to use local files to solve missions. More info in a blog post.
In order to install CheckiO client you'll need installed Python (version at least 3.8)
Install CheckiO Client first:
pip3 install checkio_client
Configure your tool
checkio --domain=py config --key=
Sync solutions into your local folder
checkio sync
(in beta testing) Launch local server so your browser can use it and sync solution between local file end extension on the fly. (doesn't work for safari)
checkio serv -d
Alternatevly, you can install Chrome extension or FF addon
checkio install-plugin
checkio install-plugin --ff
checkio install-plugin --chromium
Read more here about other functionality that the checkio client provides. Feel free to submit an issue in case of any difficulties.