Repeated DNA Sequences
Try to solve the Repeated DNA Sequences problem.
We'll cover the following
Statement
A DNA sequence consists of nucleotides represented by the letters ‘A’, ‘C’, ‘G’, and ‘T’ only. For example, “ACGAATTCCG” is a valid DNA sequence.
Given a string, s
, that represents a DNA sequence, return all the 10-letter-long sequences (continuous substrings of exactly 10 characters) that appear more than once in s
. You can return the output in any order.
Constraints:
s.length
s[i]
is either'A'
,'C'
,'G'
, or'T'
.
Examples
Create a free account to view this lesson.
Continue your learning journey with a 14-day free trial.
By signing up, you agree to Educative's Terms of Service and Privacy Policy