package utils
import "testing"
func TestToSnake(t *testing.T) {
src := []int{1, 2, 3, 4, 5, 6}
t.Log(src)
ReverseSlice(src)
}