1317. Convert Integer to the Sum of Two No-Zero Integers
No-Zero integer is a positive integer that does not contain any
0in its decimal representation.Given an integer
n, return a list of two integers[a, b]where:
aandbare No-Zero integers.a + b = nThe test cases are generated so that there is at least one valid solution. If there are many valid solutions, you can return any of them.
1 | class Solution { |