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
Java: Test suite produces invalid "expected" results. Example: expected:<-3.888888888888889[] is freezing tempera...> but was:<-3.888888888888889[3] is freezing tempera...>
Apparently this is the same issue as has been reported multiple times in the past year and marked resolved, but is not currently functioning correctly.
Hi evgeny.kurilenko (and g964),
Short answer: replace "Arrays" with "java.util.Arrays"
Long answer: This issue is caused because the compiler can't find the "java.util" needed for Arrays. If "import java.util.Arrays" doesn't work, then you can replace "Arrays" with "java.util.Arrays".
Hi Zanteth,
Is it possible your string no longer has an item at index 11 due to removal of duplicates?