Skip to content

Commit d613b39

Browse files
yanglbmeidoocs
authored andcommitted
style: format code and docs with prettier
1 parent 0a27144 commit d613b39

File tree

1 file changed

+1
-1
lines changed
  • lcof/面试题53 - II. 0~n-1中缺失的数字

1 file changed

+1
-1
lines changed

lcof/面试题53 - II. 0~n-1中缺失的数字/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ class Solution {
188188
func missingNumber(_ nums: [Int]) -> Int {
189189
var left = 0
190190
var right = nums.count
191-
191+
192192
while left < right {
193193
let mid = (left + right) / 2
194194
if nums[mid] > mid {

0 commit comments

Comments
 (0)