// // Created by 李洋 on 2023/11/5. // #ifndef LEECODE_C_Q187_H #define LEECODE_C_Q187_H #include #include #include using namespace std; vector findRepeatedDnaSequences(string s) { vector ret; unordered_map m; for(int i = 0;i+9 1){ ret.push_back(key); } } return ret; } #endif //LEECODE_C_Q187_H