201——feel——[fi:l]——vt.摸,感觉,认为;n.感觉,触摸——feel——f斧头(编码)ee眼睛(象形)l棍子(编码)——斧头用眼看,棍子用手摸——The metal felt smooth and cold.——这种金属摸起来冰冷而光滑。 202——cleve…
2023每日刷题(二十)
Leetcode—187.重复的DNA序列 实现代码
class Solution {
public:const int L 10;vector<string> findRepeatedDnaSequences(string s) {unordered_map<string, int> str;vector<string> ans;int len s.size()…
A 找到冠军 I 枚举求强于其他所有队的队 class Solution {
public:int findChampion(vector<vector<int>> &grid) {int n grid.size();int res 0;for (int i 0; i < n; i) {int t 0;for (int j 0; j < n; j)if (j ! i)t grid[i][j];if (t n - 1) …