Leetcode 14: Longest Common Prefix on given list of strings
As part of the programming series, we will review the longest common prefix question which is categorized as an easy problem in Leetcode. In this exercise, we will use Python 3 to write the code. Problem Write a function to find the longest common prefix string amongst an array of strings. If there is no…