This content originally appeared on DEV Community and was authored by gaurbprajapati
The divmod() method in python takes two numbers and returns a pair of numbers consisting of their quotient and remainder
`
print(divmod(10,3))
`
Output-- (3, 1) where 3 is quotient and 1 remainder.
This is Queation where divmod function used link--
https://leetcode.com/problems/add-to-array-form-of-integer/
Here problem solution
def addToArrayForm(self, A, K):
for i in range(len(A) - 1, -1, -1):
K, A[i] = divmod(A[i] + K, 10)
return [int(i) for i in str(K)] + A if K else A
This content originally appeared on DEV Community and was authored by gaurbprajapati
gaurbprajapati | Sciencx (2022-06-23T21:37:07+00:00) divmod() in Python Learn —. Retrieved from https://www.scien.cx/2022/06/23/divmod-in-python-learn/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.