鱼C论坛

 找回密码
 立即注册
查看: 2246|回复: 6

[已解决]关于找无重复最长字符串的问题

[复制链接]
发表于 2022-8-16 20:31:57 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
如图,我实在想不出来我的代码出啥问题了
最佳答案
2022-8-16 21:30:10
class Solution:
    def lengthOfLongestSubstring(self, s: str) -> int:
        count = 0
        string = ""
        for i in range(len(s)):
            if s[i] not in string:
                string += s[i]
            else:
                count = len(string) if len(string) > count else count
                exist_index = string.find(s[i])
                string = string[(exist_index+1):] + s[i]
        else:
            count = len(string) if len(string) > count else count
        return count
QQ截图20220816203121.png
20220816203024.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-8-16 21:28:59 | 显示全部楼层
s , m = input() . strip() , 0
for i in range(len(s)):
    e , n = s[i] , 1
    while len(e) == len(set(e)) and i + n < len(s):
        n += 1
        e = e + s[i + n - 1]
    if n - 1 > m :
        m = n - 1
print(m)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-8-16 21:30:10 | 显示全部楼层    本楼为最佳答案   
class Solution:
    def lengthOfLongestSubstring(self, s: str) -> int:
        count = 0
        string = ""
        for i in range(len(s)):
            if s[i] not in string:
                string += s[i]
            else:
                count = len(string) if len(string) > count else count
                exist_index = string.find(s[i])
                string = string[(exist_index+1):] + s[i]
        else:
            count = len(string) if len(string) > count else count
        return count
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-8-16 21:54:23 | 显示全部楼层

我想问一下,break能跳出嵌套if不,刚刚将break缩进提前了一层,就通过了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-8-16 21:56:50 | 显示全部楼层
叶墨沫 发表于 2022-8-16 21:54
我想问一下,break能跳出嵌套if不,刚刚将break缩进提前了一层,就通过了

当然可以的啊
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-8-16 22:01:04 | 显示全部楼层

抱歉抱歉,我忽略了个小细节,break放里面的if了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-8-16 22:47:48 | 显示全部楼层
本帖最后由 jackz007 于 2022-8-16 23:00 编辑
class Solution(str):
    def lengthofLongestSubstring(self):
        r = 0
        for i in range(len(self)):
            n = 0
            while len(self[i : i + n + 1]) == len(set(self[i : i + n + 1])) and i + n < len(self):
                n += 1
            if r < n:
                r = n
        return r

s = Solution(input())
print(s . lengthofLongestSubstring())
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-17 03:06

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表