Fix names and links

This commit is contained in:
Darren Scerri
2017-12-14 01:11:38 +01:00
parent 7ffd624004
commit 2b34ee4ba9
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`.