update 0738.单调递增的数字: 修改 go 代码处markdown语法错误

This commit is contained in:
Yuhao Ju
2022-12-17 16:02:03 +08:00
committed by GitHub
parent 992ef648f6
commit f30fc5649d

View File

@ -179,7 +179,7 @@ class Solution:
``` ```
### Go ### Go
```golang ```go
func monotoneIncreasingDigits(N int) int { func monotoneIncreasingDigits(N int) int {
s := strconv.Itoa(N)//将数字转为字符串,方便使用下标 s := strconv.Itoa(N)//将数字转为字符串,方便使用下标
ss := []byte(s)//将字符串转为byte数组方便更改。 ss := []byte(s)//将字符串转为byte数组方便更改。