LAB RESTRICTIONS, PLEASE READ:- Do not add any imports, the ones that you need will be given to you.- Do not use recursion.- Do not use try-except statements, you should be able to anticipateor prevent any errors from happening at all!
- Code in python
- Should work for given doctest
def longest_unique_substring(s: str) -> str:"""Given a string, return the longest unique substring that occurs within.A unique substring is a substring withinwhich DOES NOT have anyrepeating characters. As an example, "xd" is unique but "xxd" is not.If there are two equal length unique substrings within, return the onethat starts first (i.e., begins at a smaller index).
>>> longest_unique_substring('aab')'ab'
"""
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here