approved
Thanks bro.
don't be so discouraged at having only done 15 kata. consider just working on white kyu problems for a while. your skills will build when you feed 'em. good luck!
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, "");
You wrote
testing([], 3, ""); -> testing([], 3, "");
I am sorry but I don't see any difference in your proposition. Moreover that doesn't seem to worry the 135 people who passed the Dart kata. Cheers!
Edit: The Dart translator left CW two years ago...
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, "");
->
This won't be a problem if the Dart version is updated but on old Dart it's necessary.
Loading collection data...
approved
Thanks bro.
don't be so discouraged at having only done 15 kata. consider just working on white kyu problems for a while. your skills will build when you feed 'em. good luck!
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, "");
You wrote
I am sorry but I don't see any difference in your proposition. Moreover that doesn't seem to worry the 135 people who passed the Dart kata. Cheers!
Edit: The Dart translator left CW two years ago...
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.