• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

[Swift]LeetCode1100.长度为K的无重复字符子串|FindK-LengthSubstringsWithNoRepeated ...

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤微信公众号:山青咏芝(shanqingyongzhi)
➤博客园地址:山青咏芝(https://www.cnblogs.com/strengthen/
➤GitHub地址:https://github.com/strengthen/LeetCode
➤原文地址:
➤如果链接不是山青咏芝的博客园地址,则可能是爬取作者的文章。
➤原文已修改更新!强烈建议点击原文地址阅读!支持作者!支持原创!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

热烈欢迎,请直接点击!!!

进入博主App Store主页,下载使用各个作品!!!

注:博主将坚持每月上线一个新app!!!

Given a string S, return the number of substrings of length K with no repeated characters.

Example 1:

Input: S = 5
Output: 6
Explanation: 
There are 6 substrings they are : 'havef','avefu','vefun','efuno','etcod','tcode'.

Example 2:

Input: S = 5
Output: 0
Explanation: 
Notice K can be larger than the length of S. In this case is not possible to find any substring.

Note:

  1. 1 <= S.length <= 10^4
  2. All characters of S are lowercase English letters.
  3. 1 <= K <= 10^4

给你一个字符串 S,找出所有长度为 K 且不含重复字符的子串,请你返回全部满足要求的子串的 数目。 

示例 1:

输入:S = "havefunonleetcode", K = 5
输出:6
解释:
这里有 6 个满足题意的子串,分别是:'havef','avefu','vefun','efuno','etcod','tcode'。

示例 2:

输入:S = "home", K = 5
输出:0
解释:
注意:K 可能会大于 S 的长度。在这种情况下,就无法找到任何长度为 K 的子串。 

提示:

  1. 1 <= S.length <= 10^4
  2. S 中的所有字符均为小写英文字母
  3. 1 <= K <= 10^4

44ms

 1 class Solution {
 2     func numKLenSubstrNoRepeats(_ S: String, _ K: Int) -> Int {
 3         var ans:Int = 0
 4         let n:Int = S.count
 5         let S:[Int] = Array(S).map{$0.ascii}
 6         for i in 0..<n
 7         {
 8             var freq:[Int] = [Int](repeating:0,count:26)
 9             var j:Int = i
10             var len:Int = 0
11             while(j < n)
12             {
13                 //a:97
14                 if freq[S[j] - 97] != 0 {break}
15                 freq[S[j] - 97] += 1
16                 len += 1
17                 j += 1
18                 if len == K
19                 {
20                     ans += 1
21                 }
22             }
23         }
24         return ans
25     }
26 }
27 
28 //Character扩展
29 extension Character
30 {
31     //Character转ASCII整数值(定义小写为整数值)
32     var ascii: Int {
33         get {
34             return Int(self.unicodeScalars.first?.value ?? 0)
35         }
36     }
37 }

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
[Swift]LeetCode86.分隔链表|PartitionList发布时间:2022-07-13
下一篇:
[iOS]ModulecompiledwithSwift5.3.2cannotbeimportedbytheSwift5.4compiler:发布时间:2022-07-13
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap