Add Strings LeetCode

Given two non-negative numbers num1 and num2 represented as string, return the sum of num1 and num2.

NOTE:
  • The length of both num1 and num2 is < 5100.
  • Both num1 and num2 contains only digits 0-9.
  • Both num1 and num2 does not contain any leading zero.
  • You must not use any built-in BigInteger library or convert the inputs to integer directly.
The Leetcode page and the forum gives overview of the detailed description if you want to explore further. A collection of hundreds of interview questions and solutions are available in our blog at Interview Question

Solution

No comments:

Post a Comment