python、GO中操作slice、list的方式。

大洋的顶端 ·
``` func indexof(a interface{}, b interface{}) int { va := reflect.ValueOf(a) if va.Kind() != reflect.Slice && va.Kind() != reflect.Array { return -1 } for i := 0; i < va.Len(); i++ { if reflect.DeepEqual(va.Index(i).Interface(), b) { return i } } return -1 } ```
#1