Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compare two arrays regardless of order #262

Closed
dmytrohavrysh opened this issue May 25, 2020 · 0 comments
Closed

Compare two arrays regardless of order #262

dmytrohavrysh opened this issue May 25, 2020 · 0 comments

Comments

@dmytrohavrysh
Copy link

This code doesn't work in some cases:
// Or
const isEqual = (a, b) => a.length === b.length && a.every((v) => b.includes(v));

For example:
isEqual(['a', 'a'], ['b', 'a'])
gives true, but it must be false.

phuocng added a commit that referenced this issue Jun 19, 2020
Remove non-working array comparison, fixes #262
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant