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.
Probably, would be good to include some info about the difference.
In output you can see
expected:<[999]> but was:<[1.57]>
.It should be
expected:<[1.57]> but was:<[999]>
.To achieve this you have to call assert like this:
assertEquals("1.57", NthSeries.seriesSum(5));
->assertEquals(expected, actual);
Argiment order is mixed up in asserts in Java version.
Hi.
The shortcuts written above does not work for me.
I can submit the code if I press Ctrl+s in regular mode, but Ctrl+Enter simply does not work.
In VIM mode to submit works :w.
But none of shortcuts mentiond above or on buttons does seem to work.
Could you please explain me, if I am doing something wrong, or the info is outdated?
Thank you, in advance.
Btw, I use Chrome on Windows, if it'll help.
I've noticed two things solving this kata in Haskell:
This comment is hidden because it contains spoiler information about the solution