mirror of
https://github.com/youngyangyang04/leetcode-master.git
synced 2025-07-10 20:40:39 +08:00
update 0738.单调递增的数字: 修改 go 代码处markdown语法错误
This commit is contained in:
@ -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数组,方便更改。
|
||||||
|
Reference in New Issue
Block a user