0% found this document useful (0 votes)
13 views

Longest Substring Without Repeating Characters - LeetCode

Uploaded by

Rehan Mahmood
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views

Longest Substring Without Repeating Characters - LeetCode

Uploaded by

Rehan Mahmood
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Problem List Run Submit Register or Sign in Premium

Description Editorial Solutions Submissions Code

 Python Auto
3. Longest Substring Without Repeating 1 class Solution(object):
Characters 2
3
def lengthOfLongestSubstring(self, s):
"""
4 :type s: str
Medium Topics Companies Hint
5 :rtype: int
6 """
Given a string s , find the length of the longest substring without repeating characters. 7

Example 1:

Input: s = "abcabcbb"
Output: 3
Explanation: The answer is "abc", with the length of 3.

Example 2:

Input: s = "bbbbb"
Output: 1
Explanation: The answer is "b", with the length of 1.

Example 3: Saved

Input: s = "pwwkew" You need to Login / Sign up to run or submit



Output: 3
40.6K 449 317 Online Testcase Test Result

You might also like