mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 09:22:22 -07:00
e41878a64f
When you try to make this array unique `[]int{1, 2, 4, 4, 5}` you get
`[]int{1, 4, 5}` instead of `[]int{1, 2, 4, 5}`.
Our index `i` should be increased even with both indices `i` and `j`
have the same value