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.
Use spoiler flag.
This comment is hidden because it contains spoiler information about the solution
Pooh! That was really difficult but exciting!
But it had to make a hack on the case with one element in the array.
Now will examine other solutions.
Thank you!
I somehow doubt the test case is wrong. Have you considered that leading zeroes disappear?
It's also testing backwards.
Your input is
[3]
. Allowed return values would be12
,21
or30
.Because there can be multiple possibilities, the test checks the resulting sums of digits, not the return value itself. Those digit sums are unique.
test case which make me so confused!
testing for 12, Expected: [3].
??
// 判定数组是否是1-9
This comment is hidden because it contains spoiler information about the solution