Repeated DNA Sequences

Repeated DNA Sequences

All DNA is composed of a series of nucleotides abbreviated as A, C, G, and T, for example: “ACGAATTCCG”. When studying DNA, it is sometimes useful to identify repeated sequences within the DNA.
Write a function to find all the 10-letter-long sequences (substrings) that occur more than once in a DNA molecule.

Example

Input: s = “AAAAACCCCCAAAAACCCCCCAAAAAGGGTTT”
Output: [“AAAAACCCCC”, “CCCCCAAAAA”]

Solution

@切片真好用
class Solution:
    def findRepeatedDnaSequences(self, s: str) -> List[str]:
        lenth = len(s)
        if lenth<10:
            return []
        seen = set()
        repeat = set()
        for i in range(lenth-9):
            temp = s[i:i+10:]
            if temp in seen:
                repeat.add(temp)
            else:
                seen.add(temp)
        return list(repeat)
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章