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.
Dart 2.14 update: https://www.codewars.com/kumite/648ea103d52f51688406b946
Oops, I just realised that the comment section here filters < > tags
< String > before []
testing( < String > [], 3, "");
Language: Dart
For test cases with an empty strarr, please specify that they're Lists of Strings, not Lists of dynamics, for best practices.
i.e.
testing([], 3, "");
->
testing([], 3, "");
This won't be a problem if the Dart version is updated but on old Dart it's necessary.