Skip to content

Commit 2aba0c3

Browse files
committedMar 24, 2022
docs: add a description of the solution to lc problem: No.0187
No.0187.Repeated DNA Sequences
1 parent bd46fe3 commit 2aba0c3

File tree

1 file changed

+4
-0
lines changed
  • solution/0100-0199/0187.Repeated DNA Sequences

1 file changed

+4
-0
lines changed
 

‎solution/0100-0199/0187.Repeated DNA Sequences/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@
4545

4646
<!-- 这里可写通用的实现逻辑 -->
4747

48+
**朴素解法:**
49+
50+
使用哈希表,记录所有连续长度为 10 的子字符串出现次数(字符串为 Key,次数为 Value),当出现一次以上时,将其加入返回列表当中。
51+
4852
<!-- tabs:start -->
4953

5054
### **Python3**

0 commit comments

Comments
 (0)
Please sign in to comment.