Skip to content

Commit a5b49c2

Browse files
committed
Hotfix
1 parent c63a329 commit a5b49c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ func printColoredArray(array []int, idx1, idx2 int) {
4444
} else if idx2 == i {
4545
fmt.Print(color.OpUnderscore.Sprint(color.LightYellow.Sprint(array[idx2]), " "))
4646
} else {
47-
fmt.Print(color.Sprint(array[i], " "))
47+
fmt.Print(array[i], " ")
4848
}
4949
}
5050
fmt.Println("]")

0 commit comments

Comments
 (0)