修改错别字“下表”->“下标”

Signed-off-by: bqlin <bqlins@163.com>
This commit is contained in:
bqlin
2021-12-10 13:45:56 +08:00
parent 94e5dea6f0
commit e12257efc7
23 changed files with 52 additions and 52 deletions

View File

@@ -183,7 +183,7 @@ class Solution:
```golang
func lemonadeChange(bills []int) bool {
//left表示还剩多少 下0位5元的个数 ,下1为10元的个数
//left表示还剩多少 下0位5元的个数 ,下1为10元的个数
left:=[2]int{0,0}
//第一个元素不为5直接退出
if bills[0]!=5{