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

View File

@@ -16,7 +16,7 @@ public class Vertex {
this.val = val;
}
/* 値リストvalsを入力し、頂点リストvetsを返す */
/* 値リスト vals を入力し、頂点リスト vets を返す */
public static Vertex[] valsToVets(int[] vals) {
Vertex[] vets = new Vertex[vals.length];
for (int i = 0; i < vals.length; i++) {
@@ -25,7 +25,7 @@ public class Vertex {
return vets;
}
/* 頂点リストvetsを入力し、値リストvalsを返す */
/* 頂点リスト vets を入力し、値リスト vals を返す */
public static List<Integer> vetsToVals(List<Vertex> vets) {
List<Integer> vals = new ArrayList<>();
for (Vertex vet : vets) {
@@ -33,4 +33,4 @@ public class Vertex {
}
return vals;
}
}
}