test

this is a test

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class Solution {
public:
vector<vector<string>> groupAnagrams(vector<string>& strs) {
vector<int> v1 ={3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103};
unordered_map<unsigned long long, vector<string>> m1;
for(auto it: strs)
{
unsigned long long temp = 1;
for(auto ch:it)
{
temp*=v1[ch-'a'];
}
m1[temp].emplace_back(it);
}
vector<vector<string>> ans;
for(auto &[x,y]: m1)
{
ans.emplace_back(y);
}
return ans;
}
};

标签

1111

需要折叠的一段内容,支持 markdown

Fitness=1/3[σ(Δloss)+σ(Δbenchmark)+LLMjudge]Fitness = 1/3 [σ(\Delta loss) + σ(\Delta benchmark) + LLMjudge]

E=mc2E=mc^2

LWxh=Ly2y2h2h2Wxh第2步的直接贡献+Ly2y2h2h2h1h1Wxh倒推回第1步的间接贡献\frac{\partial L}{\partial W_{xh}} = \underbrace{\frac{\partial L}{\partial y_2} \frac{\partial y_2}{\partial h_2} \frac{\partial h_2}{\partial W_{xh}}}_{\text{第2步的直接贡献}} + \underbrace{\frac{\partial L}{\partial y_2} \frac{\partial y_2}{\partial h_2} \frac{\partial h_2}{\partial h_1} \frac{\partial h_1}{\partial W_{xh}}}_{\text{倒推回第1步的间接贡献}}


test
https://www.elevenx.me/2026/02/01/test/
作者
Eleven
许可协议