leetcode989
Posted AsenYang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode989相关的知识,希望对你有一定的参考价值。
1 class Solution: 2 def addToArrayForm(self, A, K): 3 i = len(A) - 1 4 while i >= 0 and K > 0: 5 A[i] += K 6 K = A[i] // 10 7 if A[i] >= 10: 8 A[i] %= 10 9 if i == 0: 10 A = [0] + A 11 i += 1 12 i -= 1 13 return A 14
以上是关于leetcode989的主要内容,如果未能解决你的问题,请参考以下文章
Leetcode_easy989. Add to Array-Form of Integer