Re-translate the Japanese version (#1871)

* Retranslate Japanese docs with GPT-5.4

* Retranslate Japanese code with GPT-5.4
This commit is contained in:
Yudong Jin
2026-03-30 07:30:15 +08:00
committed by GitHub
parent fe6443235b
commit d7b2277d2b
1444 changed files with 83312 additions and 8363 deletions
+3 -3
View File
@@ -17,7 +17,7 @@ struct Vertex {
}
};
/* 値リストvals を入力し、頂点リストvets を返す */
/* 値リスト vals を入力し、頂点リスト vets を返す */
vector<Vertex *> valsToVets(vector<int> vals) {
vector<Vertex *> vets;
for (int val : vals) {
@@ -26,11 +26,11 @@ vector<Vertex *> valsToVets(vector<int> vals) {
return vets;
}
/* 頂点リストvets を入力し、値リストvals を返す */
/* 頂点リスト vets を入力し、値リスト vals を返す */
vector<int> vetsToVals(vector<Vertex *> vets) {
vector<int> vals;
for (Vertex *vet : vets) {
vals.push_back(vet->val);
}
return vals;
}
}