• Tutorials
  • DSA
  • Data Science
  • Web Tech
  • Courses
August 07, 2024 |90 Views

SDE Sheet - Longest Common Prefix using Trie

Description
Discussion

This video is part of the Trie section under GFG SDE Sheet.

Given an array of strings arr. Return the longest common prefix among all strings present in the array. If there's no prefix common in all the strings, return "-1".

Examples :

Input: arr[] = ["geeksforgeeks", "geeks", "geek", "geezer"]
Output: gee
Explanation: "gee" is the longest common prefix in all the given strings.

Try it out before watching the implementation of the problem in the video. We recommend watching the video, even if you can solve the problem. You may discover something new. All the best!!!

Do check out:-
Problem: https://www.geeksforgeeks.org/problems/longest-common-prefix-in-an-array5129/1
SDE Sheet Link: https://www.geeksforgeeks.org/sde-sheet-a-complete-guide-for-sde-preparation/
Article Link: https://www.geeksforgeeks.org/longest-common-prefix-using-trie/