This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
You are given 2 numbers as strings, and you need to sum them assuming that you can't simply parse them as integers | |
cause the numbers may be too big to be stored as an integer | |
Return the sum as a string | |
*/ | |
function sumStrings(str1, str2) { | |
const parsedDigits1 = str1 | |
.split('') | |
.reverse() | |
.map((digit) => parseInt(digit)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
You are given 2 numbers as strings, and you need to sum them assuming that you can't simply parse them as integers | |
cause the numbers may be too big to be stored as an integer | |
Return the sum as a string | |
*/ | |
function sumStrings(str1, str2) { | |
// Your code here | |
} | |
function test(str1, str2, solution) { |