feat:完善信息

This commit is contained in:
henry
2022-01-24 17:29:02 +08:00
parent 1c0d9dfb6b
commit 26b58e3ca6
6 changed files with 38 additions and 7 deletions

View File

@ -24,6 +24,8 @@ func TestArrayFlip(t *testing.T) {
t.Log(a[4])
a = append(a, []int{1, 2, 3, 4, 5, 6, 7, 8, 9}...)
t.Log(a)
t.Log(len(a))
t.Log(cap(a))
}
func TestArrayStrings(t *testing.T) {