8000 remove comment due to formatting issues · delphi1977/Swift@91eea6c · GitHub
[go: up one dir, main page]

Skip to content

Commit 91eea6c

Browse files
authored
remove comment due to formatting issues
1 parent 4cd1718 commit 91eea6c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

sorts/MergeSort.swift

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@ extension Array where Element: Comparable {
3131
) {
3232
var copy = [Element](repeating: self[left], count: right - left + 1)
3333
var (leftStartIndex, rightStartIndex, currentIndex) = (left, mid + 1, 0)
34-
// [4, 5, 6, 1, 2, 3] <--- input array
35-
// ^ ^
36-
// leftStartIndex rightStartIndex
3734
for _ in left ... right {
3835
if leftStartIndex > mid {
3936
copy[currentIndex] = self[rightStartIndex]

0 commit comments

Comments
 (0)
0