题目 代码
#include <bits/stdc.h>
using namespace std;
typedef long long LL;const int mod 1e8;
const int M 1 << 12;
LL f[13][M];
int g[13];
vector<int> state;
vector<int> p[M];
int n, m;
bool check(int x)
{return !(x & x <&…
最近在csdn网站上刷到一个题目,题目要求编写一个函数查找字符串中的最长公共前缀,题目如下: 给出的答案如下:
from typing import List
def longestCommonPrefix(strs:List[str]) -> str:if len(strs) 0:return i 0 #代…
题目: 题解:
func characterReplacement(s string, k int) int {cnt : [26]int{}maxCnt, left : 0, 0for right, ch : range s {cnt[ch-A]maxCnt max(maxCnt, cnt[ch-A])if right-left1-maxCnt > k {cnt[s[left]-A]--left}}return len(s) - left
}f…