Question: Write a function solution that, given a string S of length N , returns the length of the shortest unique substring of S , that

Write a function solution that, given a string S of length N, returns the length of the shortest unique substring of S, that is, the length of the shortest word which occurs in S exactly orfce.
Examples:
Given S= "abaaba", the function should return 2. The shortest unique substring of S is "aa".
Given S="zyzyzyz", the function should return 5. The shortest unique substring of S is "yzyzy". Note that there are shorter words, like "yzy", occurrences of which overlap, but they still count as multiple occurrences.
Given S= "aabbbabaaa", the function should
Search
 Write a function solution that, given a string S of length

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!