Merge pull request #93 from darrenscerri/fix-names

Fix names and links
This commit is contained in:
Angelos Chalaris
2017-12-14 10:32:41 +02:00
committed by GitHub
3 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
### Array difference (complement)
### Array difference
Create a `Set` from `b`, then use `Array.filter()` on `a` to only keep values not contained in `b`.

View File

@ -1,4 +1,4 @@
### Array intersection (Common values between two arrays)
### Array intersection
Create a `Set` from `b`, then use `Array.filter()` on `a` to only keep values contained in `b`.