fix(Kotlin): Remove empty lines (#1264)

This commit is contained in:
curtishd
2024-04-10 21:19:19 +08:00
committed by GitHub
parent 30fd4ef646
commit a3ee733e7b
16 changed files with 16 additions and 16 deletions

View File

@ -48,4 +48,4 @@ fun main() {
val nums = intArrayOf(4, 1, 3, 1, 5, 2)
heapSort(nums)
println("堆排序完成后 nums = ${nums.contentToString()}")
}
}

View File

@ -26,4 +26,4 @@ fun main() {
val nums = intArrayOf(4, 1, 3, 1, 5, 2)
insertionSort(nums)
println("插入排序完成后 nums = ${nums.contentToString()}")
}
}

View File

@ -53,4 +53,4 @@ fun main() {
val nums = intArrayOf(7, 3, 2, 6, 0, 1, 5, 4)
mergeSort(nums, 0, nums.size - 1)
println("归并排序完成后 nums = ${nums.contentToString()}")
}
}