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 ...
分类:
其他好文 时间:
2019-10-19 10:02:26
阅读次数:
79
重复的DNA序列。给的input是一个DNA序列,请输出所有出现多次的DNA子序列。这题有位运算的做法但是个人觉得用hashset的做法更方便。 思路是用两个hashset,一个存子序列是否出现过(seen),另一个存最后的输出(res)。当某个子序列在seen中已经有了,就存入res;最后输出re ...
分类:
其他好文 时间:
2019-10-17 09:15:23
阅读次数:
96
张宁 Learning Motion Planning Policies in Uncertain Environments through Repeated Task Executions 通过重复任务执行学习不确定环境中的运动规划策略链接:https://pan.baidu.com/s/1TlS ...
分类:
其他好文 时间:
2019-09-14 17:23:58
阅读次数:
115
原题链接在这里:https://leetcode.com/problems/maximum-length-of-repeated-subarray/ 题目: Given two integer arrays A and B, return the maximum length of an subar ...
分类:
其他好文 时间:
2019-09-03 12:04:03
阅读次数:
89
Easy In a array A of size 2N, there are N+1 unique elements, and exactly one of these elements is repeated N times. Return the element repeated N time ...
分类:
其他好文 时间:
2019-08-27 23:08:11
阅读次数:
82
//判断输入的字符串是不是可以由子串多次重复构成 #include<iostream> #include<string> using namespace std; class Solution { public: bool repeated(string s) { int n = s.size();... ...
分类:
其他好文 时间:
2019-08-18 15:55:22
阅读次数:
106
因为只能交换一次,先考虑如果不交换最大的值。 接下来考虑交换,有四种情况 ① aaabaaa型 交换一下可以将相邻的两块连在一起,答案就是两块长度之和 ② aaabbbaaaa 交换一下也不能连起两块,答案就是最长的长度加一 ③ aaab 没有可以交换的,答案就是不交换的长度 ④ aaabaaaab ...
分类:
其他好文 时间:
2019-08-11 13:35:19
阅读次数:
77
iven two integer arrays A and B, return the maximum length of an subarray that appears in both arrays. Example 1: Note: ...
分类:
其他好文 时间:
2019-07-09 22:21:59
阅读次数:
125
Given a non-empty string check if it can be constructed by taking a substring of it and appending multiple copies of the substring together. You may a ...
分类:
其他好文 时间:
2019-07-01 13:48:23
阅读次数:
76
Algorithms: https://leetcode-cn.com/problems/repeated-substring-pattern/ 重复子字符串 Review: “I’m Leaving Google?—?and Here’s the Real Deal Behind Google C ...
分类:
其他好文 时间:
2019-07-01 00:43:26
阅读次数:
95