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 comment is hidden because it contains spoiler information about the solution
Here are the tests above being run: Time: 509ms Passed: 12 Failed: 0
Here is what happens when I attempt: Passed: 3759 Failed: 1 Errors: 1
How is it possible that I'm passing the sample tests, but failing the actual test case, and if there are suppose to be only 40 random cases how am I passing over 2000?
I understand many people have passed the kata already, but unless I'm failing a test case I have not included, it makes no sense I can't pass the kata.
Google how to sum the numbers from 1 to 100
Hmmm. Any guidance to share? Tried another method, same result
__There is no error in the 3rd test.
I don't understand: there are only 40 random tests and not 1000+... Furthermore 2472 guys passed the JS kata so I am quite sure there are no errors. Except the first test you mention where do the others come from?
.
You need a more efficient algorithm ;-)
[JavaScript] - The JS tests seem to go extremely high, web Repl's think it's in an infinite loop.. is this just failing because the servers stop executing? I've optimized a lot.
Passed: 19 Failed: 1 Errors: 1
Test Results:
Test Passed: Value == 30
Test Passed: Value == 9
Test Passed: Value == 495
Test Passed: Value == 0
Test Passed: Value == 3025
Test Passed: Value == 3025
Test Passed: Value == 3025
Test Passed: Value == -10
Test Passed: Value == 0
Test Passed: Value == 5
Test Passed: Value == -5
Test Passed: Value == 0
Test Passed: Value == 65650
Test Passed: Value == 66963
Test Passed: Value == 6506500
Test Passed: Value == 650065000
Test Passed: Value == 65000650000
Test Passed: Value == 6500006500000
Test Passed: Value == 650000065000000
Things begin to get really big, try console.log(max) - Expected: 65000000650000000, instead got: 65000000699999980
I've tried both reduce and forEach variants.
Python attempt fails on third test case. No issues on all other tests.
Works perfectly now...thank you!
I have re-published the Python version with the arguments in the correct order. This should resolve your issue.
Same issue occurs in the Python version in the random test. Expects a negative value when no negative values are in the test case. Code is successful with all other example cases.