Leetcode 1100. Find K-Length Substrings With No Repeated Characters
Posted on Wed 12 March 2025 in Leetcode Premium • Tagged with sliding-window
Question Link : https://leetcode.com/problems/find-k-length-substrings-with-no-repeated-characters/
Difficulty: Medium
Premium: True
Question
Given a string s and an integer k, return the number of substrings in s of length k with no repeated characters. Example 1:
Input: s = "havefunonleetcode", k = 5 Output: 6 Explanation: There are 6 substrings they are …
Continue reading