Skip to content

Instantly share code, notes, and snippets.

@binford2k
Created April 13, 2017 23:38
Show Gist options
  • Save binford2k/3b22c4e7c237d2821c9ac0425e61558d to your computer and use it in GitHub Desktop.
Save binford2k/3b22c4e7c237d2821c9ac0425e61558d to your computer and use it in GitHub Desktop.
$data = [1,2,3,3,3,8,5,4,2,2,]
$dupes = $data.reduce |$memo, $value| {
if count($data, $value) > 1 {
[$memo, $value]
}
else {
[$memo]
}
}
notice($dupes.flatten.delete_undef_values.unique)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment