Skip to content

Instantly share code, notes, and snippets.

@Nkwachi-N
Created April 13, 2021 14:14
Show Gist options
  • Save Nkwachi-N/6f40d194e35c649ae3af1ff8064b495f to your computer and use it in GitHub Desktop.
Save Nkwachi-N/6f40d194e35c649ae3af1ff8064b495f to your computer and use it in GitHub Desktop.
Remove Duplicate Elements
int removeDuplicateElements(List array){
List newArray = [];
for(var element in array) {
if(!newArray.contains(element)) {
newArray.add(element);
}
}
return newArray.length;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment