Question
Given two non-negative integers num1 and num2 represented as strings, return the product of num1 and num2, also represented as a string.
[Read More]
Question
Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.
[Read More]
Question
Given a collection of candidate numbers (candidates) and a target number (target), find all unique combinations in candidates where the candidate numbers sums to target.
[Read More]
Question
Given a string containing just the characters ‘(‘ and ‘)’, find the length of the longest valid (well-formed) parentheses substring.
[Read More]
Question
Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum.
[Read More]