[LeetCode] Top Interview 150 Problems Solving # 14 Longest Common Prefix
Understanding the Problem It is simply to find the common prefix in between the strings in the list strs. strs contains strings like strs = ["flower","flow","flight"]. In this case the common prefix will be ”fl” which is included in every string in c...