Skip to content

Commit

Permalink
Update readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
AmazingAng committed Sep 5, 2022
1 parent b79f84c commit 16b92d9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions 10_InsertionSort/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ def insertionSort(arr):
arr[j+1] = arr[j]
j -= 1
arr[j+1] = key
return arr
```
### 改写成`solidity`后有`BUG`
一共8行`python`代码就可以完成插入排序,非常简单。那么我们将它改写成`solidity`代码,将函数,变量,循环等等都做了相应的转换,只需要9行代码:
Expand Down

0 comments on commit 16b92d9

Please sign in to comment.