Aixleft

Results 2 comments of Aixleft

``` func RemoveDuplicate(arr []int) (lenght int) { m := make(map[int]int) for i := 0; i < len(arr); i++ { if _, ok := m[arr[i]]; !ok { m[arr[i]] = i }...

Is anyone else following this issue now?