You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🔥 Add Strings 🔥 || Simple Fast and Easy || with Explanation 😈
Solution - 1
classSolution {
StringaddStrings(String num1, String num2) {
finalStringBuffer sb =StringBuffer();
int i = num1.length -1;
int j = num2.length -1;
int carry =0;
while (i >=0|| j >=0) {
int sum = carry;
if (i >=0) sum += (num1.codeUnitAt(i--) -'0'.codeUnitAt(0));
if (j >=0) sum += (num2.codeUnitAt(j--) -'0'.codeUnitAt(0));
sb.write(sum %10);
carry = sum ~/10;
}
if (carry !=0) sb.write(carry);
return sb.toString().split('').reversed.join();
}
}
Solution - 2
classSolution {
StringaddStrings(String num1, String num2) {
int carry =0;
int i = num1.length -1;
int j = num2.length -1;
String ans ="";
StringaddString(String s1, String s2, int i, int j, int c, String ans) {
if (c ==0&& i <0&& j <0) {
return ans.split('').reversed.join();
}
if (i >=0) {
c +=int.parse(s1[i]);
i--;
}
if (j >=0) {
c +=int.parse(s2[j]);
j--;
}
ans +=String.fromCharCode(c %10+'0'.codeUnitAt(0));
c = c ~/10;
returnaddString(s1, s2, i, j, c, ans);
}
returnaddString(num1, num2, i, j, carry, ans);
}
}