Strings - Longest Common Prefix
Longest Common Prefix
Problem Link:
https://leetcode.com/problems/longest-common-prefix/description/
My approach:
I sorted the array in the ascending order of the string sizes.
Then I checked every character of the arr[0] with others strings.
If t...
nirbhaycodes.hashnode.dev1 min read