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.
Input : []int{40, 44, 48, 51, 52, 54, 55, 58, 67, 73}
MyOutput: 40-48,51,52,54,55,58,67,73
Expected: 40,44,48,51,52,54,55,58,67,73
As i understand 40 - 44 - 48 . Should be join 40-48 ( 40, 44, 48 - 3 number )
Am i miss understanding anything ?
Hi VermillionAzure
Seem anything wrong with test case setup by default. I write function return false ( default one ) and get error while trying to test
bool accept_string(std::string str) { return false }
Thanks
TTin