leetcode python 003

Posted 蚂蚁不在线

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode python 003相关的知识,希望对你有一定的参考价值。

## 给定一个字符串,求其最长无重复的子字符串
##给定“abcabcbb”,答案是“abc”,长度为3。
##给定“bbbbb”,答案是“b”,长度为1。
##鉴于“pwwkew”,答案是“wke”,长度为3。
import time
import random
import string
x,l=1000,[]
for i in range(x):
    l.append(‘‘.join(random.sample(string.ascii_letters + string.digits,1)))
s=‘‘.join(l)
t=time.time()
q,ll,l=‘‘,[],0
for i in s:
    if q.find(i)<0:
        q=‘%s%s‘%(q,i)
    else:
        if len(q)>=l:
            ll.append(q)
            l=len(q)
        q=(‘%s%s‘%(q,i))[q.find(i)+1:]
lll=[]
for i in ll:
    if len(i)==l:
        lll.append(i)
t=time.time()-t
print(‘%s 元素用时 %s s‘%(x,t))
print(lll,l)


































以上是关于leetcode python 003的主要内容,如果未能解决你的问题,请参考以下文章

leetcode-003无重复字符的最长子串--python

leetcode-003无重复字符的最长子串--python

<LeetCode天梯>Day003 买卖股票的最佳时机 II(动态规划法) | 初级算法 | Python

python刷LeetCode:1.两数之和

leetcode刷题17.相交链表——Java&python版

003LeetCode--LongestSubstring