Skip to content

Instantly share code, notes, and snippets.

@dmjcomdem
Created August 18, 2020 11:46
Show Gist options
  • Save dmjcomdem/c651439fc448fa553d6ce5dbb791b2e8 to your computer and use it in GitHub Desktop.
Save dmjcomdem/c651439fc448fa553d6ce5dbb791b2e8 to your computer and use it in GitHub Desktop.
Counting Duplicates
function duplicateCount(text) {
return new Set(text.toLowerCase().match(/(.)(?=.*\1)/gi)).size
}
duplicateCount('Indivisibilities') // 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment