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.
AreTheySame.comp
is your solution, so probably a call tostring.Join
in your solution crashes.There are no errors in the tests.
On C#, attempt keeps failing at test 4 due to System.ArgumentNullException : Value cannot be null. (Parameter 'values')
This doesn't seem to be a code issue as the stack trace points towards the kata test:
at System.String.JoinCore[T](ReadOnlySpan
1 separator, IEnumerable
1 values)at System.String.Join[T](String separator, IEnumerable`1 values)
at AreTheySame.comp(Int32[] a, Int32[] b)
at AreTheySameTests.Test4()