43. Multiply Strings
# Medium

Solution:
define result list
multiply each pair
convert into string, remove high digit which is 0
result list = [high digit, ..., low digit]
思路不是特别难,但是要一次性写对太不容易了
Time complexity = Space complexity =
Last updated
Was this helpful?