cathar
Results
1
comments of
cathar
Java solution with detailed comments https://leetcode.com/problems/multiply-strings/discuss/2395586/Java-beat-85-solution 1. Need to know that n1[i] * n2[j] need to be put into res[i+j] and res[i+j+1] based on observation 2. Need to add with...