Compare commits

..

1 commit

Author SHA1 Message Date
Yuelin Xin
976d83fb59
Merge 95cdebced3 into 4db5c19011 2024-12-16 15:16:37 +08:00
2 changed files with 2 additions and 2 deletions

View file

@ -16,5 +16,5 @@ func TestBubbleSort(t *testing.T) {
nums1 := []int{4, 1, 3, 1, 5, 2} nums1 := []int{4, 1, 3, 1, 5, 2}
bubbleSortWithFlag(nums1) bubbleSortWithFlag(nums1)
fmt.Println("冒泡排序完成后 nums1 = ", nums1) fmt.Println("冒泡排序完成后 nums1 = ", nums)
} }

View file

@ -16,5 +16,5 @@ func TestBubbleSort(t *testing.T) {
nums1 := []int{4, 1, 3, 1, 5, 2} nums1 := []int{4, 1, 3, 1, 5, 2}
bubbleSortWithFlag(nums1) bubbleSortWithFlag(nums1)
fmt.Println("泡沫排序完成後 nums1 = ", nums1) fmt.Println("泡沫排序完成後 nums1 = ", nums)
} }