We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da610e8 commit 8b91f4cCopy full SHA for 8b91f4c
Add to Array-Form of Integer
@@ -0,0 +1,34 @@
1
+class Solution {
2
+public:
3
+ vector<int> addToArrayForm(vector<int>& num, int k) {
4
+
5
+ auto carry=0;
6
+ auto r=0,p=0;
7
+ int i=num.size()-1;
8
9
+ while(i>-1)
10
+ {
11
+ r=k%10;
12
+ p=(r+carry+num[i]);
13
+ k=k/10;
14
15
+ num[i]=p%10;
16
+ carry=p/10;
17
+ i--;
18
19
+ }
20
+ while(k>0)
21
+ { p=k%10+carry;
22
+ num.insert(num.begin(),p%10);
23
24
25
26
27
28
+ if(carry!=0)
29
30
+ num.insert(num.begin(),carry);
31
32
+ return num;
33
34
+};
0 commit comments