Hey everyone! 👋

Today, we're solving a popular string manipulation problem: Longest Common Prefix.




The Problem


The goal is to write a function that finds the longest common prefix among a list of strings.


A prefix is a substring that occurs at the beginning of a string.
The function should return the longest common string that...