:type digits: List[int] :rtype: List[int]
(self, digits)
| 27 | """ |
| 28 | class Solution(object): |
| 29 | def plusOne(self, digits): |
| 30 | """ |
| 31 | :type digits: List[int] |
| 32 | :rtype: List[int] |
| 33 | """ |
| 34 | |
| 35 | return list(map(int, list(str(int(''.join(map(str, digits)))+1)))) |
nothing calls this directly
no outgoing calls
no test coverage detected