Skip to content

Commit 61b1e5d

Browse files
committed
add comment
1 parent eade9cd commit 61b1e5d

File tree

1 file changed

+1
-0
lines changed
  • find-minimum-in-rotated-sorted-array

1 file changed

+1
-0
lines changed

find-minimum-in-rotated-sorted-array/flynn.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ func findMin(nums []int) int {
2525
return nums[lo]
2626
}
2727

28+
// Go는 while문에 대응하는 표현을 for로 이렇게 표현합니다
2829
for lo < hi {
2930
mid := lo + (hi-lo)/2
3031

0 commit comments

Comments
 (0)