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
approved by someone.
Pretty easygoing kata to figure out and to solve, nice.
This comment is hidden because it contains spoiler information about the solution
That calculator is wrong, left Riemann sum doesn't include
f(b)
. Not an issue.JavaScript Solution:
I think in second solution test for cubic polynomial answer is wrong. I cheked my solution with Riemann Calculator Online (https://calculator-online.net/riemann-sum-calculator/) and answer is -4.291875000000000 (how i expected) against -4.441875 of author's test.
The translator did
a - b
instead ofb - a
. This is probably not a mistake worthy of removing the translation.Fixed.
Same for Python
The python solution setup is still f'cked up
This has still not been fixed. I suggest to remove the Elixir version altogether.
Forked JavaScript translation
Fixed. Tests now use
assert_approx_equals()
.Added sample test cases.
Fixed. Tests now use
assert_approx_equals()
.Thanks.
Loading more items...