LINK: https://leetcode.com/problems/longest-common-prefix/description/
Simple string based problem that is used as a common warm-up problem. Relatively straightforward logic, just need to vertically compare the characters until we get a mismatch or a given string ends.