https://github.com/mxssl/removedup
Write a function that accepts a list of ints and returns a copy of that list with duplicate ints removed
https://github.com/mxssl/removedup
Last synced: about 1 year ago
JSON representation
Write a function that accepts a list of ints and returns a copy of that list with duplicate ints removed
- Host: GitHub
- URL: https://github.com/mxssl/removedup
- Owner: mxssl
- Created: 2018-08-26T19:32:31.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-26T19:39:19.000Z (almost 8 years ago)
- Last Synced: 2025-03-16T06:45:11.034Z (over 1 year ago)
- Language: Go
- Size: 0 Bytes
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Remove duplicate
Write a function that accepts a list of ints and returns a copy of that list with duplicate ints removed
```
go test ./... -v -cover
=== RUN TestCase
Expected: [10 20 30 40 50], Output: [10 20 30 40 50]
--- PASS: TestCase (0.00s)
PASS
coverage: 70.0% of statements
ok github.com/mxssl/removeDup 0.142s coverage: 70.0% of statements
```