Skip to content

Commit 8b91f4c

Browse files
Create Add to Array-Form of Integer
1 parent da610e8 commit 8b91f4c

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

Add to Array-Form of Integer

+34
Original file line numberDiff line numberDiff line change
@@ -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+
carry=p/10;
24+
25+
k=k/10;
26+
27+
}
28+
if(carry!=0)
29+
{
30+
num.insert(num.begin(),carry);
31+
}
32+
return num;
33+
}
34+
};

0 commit comments

Comments
 (0)