Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Readme.md

Longest Common Prefix

Given a String array, find the longest common prefix.

Example

f([‘rocket’, ‘rockstar’, ‘rockbottom’, ‘rock’, ‘rollingstone’] // ‘ro’
f([‘shuffle’, ‘shuttle’, ‘shut’] // ‘shu’

Source

Personal Phone Interview