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.
OP solved it, closing
Why is the base 2? Try it with base 3. You may need to check many bases to know the final result.
It seems you didn't really understand the task, and tests seem to be fine. That's not a kata issue.
Hey man... Did you check the tests one-by-one?
According to the example in the instructions, we have to take an input number, and the base of the expansion is the length of that number... Right? And then calculate for each digit of the input number: base^digit.
But in some tests it fails... For example, when we take the number 12, the base is 2, so we get: 2^1 + 2^2 = 2 + 4 = 6, but the test isnarcissistic(12) returns True instead of False.
I pass all the tests, but... [100000, 3.1415826536] should equal [100001, 3.1416026535]
Can someone help me?
I'm using Python.
When I run the code in the IDLE it works okay,
(epsilon: 9.99990000099999e-06
[100001, 3.1416026535])
and it passes the test above, but running here it failed.
I pass all the tests too, but...
[100000, 3.1415826536] should equal [100001, 3.1416026535]
[1000000, 3.1415916536] should equal [1000001, 3.1415936536]
Can you help me?