#3 Longest Substring Without Repeating Characters LeetCode | Java LeetCode Problem #2023

Softwaretechit
2 min readFeb 26, 2023

--

Read More :- https://softwaretechit.com/3-longest-substring-without-repeating-characters-leetcode-java-leetcode-problem-2023/

Longest Substring Without Repeating Characters LeetCode | Java LeetCode Problem

Download App:-https://play.google.com/store/apps/details?id=com.softwaretechit

Longest Substring Without Repeating Characters LeetCode | Java LeetCode Problem

3. Longest Substring Without Repeating Characters

Given a string s, find the length of the longest

substring without repeating characters.

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:

Input: s = "pwwkew"
Output: 3
Explanation: The answer is "wke", with the length of 3.
Notice that the answer must be a substring, "pwke" is a subsequence and not a substring.

Constraints:

  • 0 <= s.length <= 5 * 104
  • s consists of English letters, digits, symbols and spaces.

Solution:-

class Solution {
public int lengthOfLongestSubstring(String s) {
Set<Character>set=new HashSet<>();
int maxLength=0;
int left=0;
for(int right=0;right<s.length();right++){

if(!set.contains(s.charAt(right))){
set.add(s.charAt(right));
maxLength=Math.max(maxLength,right-left+1);

}else{
while(s.charAt(left)!=s.charAt(right)){
set.remove(s.charAt(left));
left++;
}
set.remove(s.charAt(left));left++;
set.add(s.charAt(right));
}

}
return maxLength;

}
}

#1 Two Sum Array Problem LeetCode Solve With HashMap Java| Solve Problem Java Leetcode #2023 #tech

In “All”

HOW I SOLVED LEETCODE PROBLEM USING CHATGPT | ChatGPT For Programmers | ChatGPT Tutorials ai

In “All”

Java Primitive Data Types MCQ Questions and Answers 1

You May Also Like

C MCQ Questions and Answers on Bitwise Operators

Top 10 Quetions On AI And ChatGPT AI Tool | Can AI Is New Future Of World

Android First App ‘Hello Word’|android first app tutorial|android studio tutorial |SoftwareTechIT

--

--