remove redundant comments

This commit is contained in:
LiAuTraver
2024-10-09 20:45:11 +08:00
committed by GitHub
parent 56bbafbd08
commit 0cb5d25bfb
+2 -2
View File
@@ -35,7 +35,7 @@ x, y = y, x
a[i], a[j] = a[j], a[i]
```
或者是计算两个整数值的的最大公约数(GCD)(译注:GCD不是那个敏感字,而是greatest common divisor的缩写,欧几里德的GCD是最早的非平凡算法):
或者是计算两个整数值的的最大公约数(GCD)(译注:Greatest Common Divisor的缩写,欧几里德的GCD是最早的非平凡算法):
```Go
func gcd(x, y int) int {
@@ -58,7 +58,7 @@ func fib(n int) int {
}
```
元组赋值也可以使一系列琐碎赋值更加紧凑(译注: 特别是在for循环的初始化部分)
元组赋值也可以使一系列琐碎赋值更加紧凑(译注: 特别是在for循环的初始化部分):
```Go
i, j, k = 2, 3, 5