Skip to content

Instantly share code, notes, and snippets.

@briangreenery
Created January 15, 2016 18:05
Show Gist options
  • Save briangreenery/97677414b7d1efff377e to your computer and use it in GitHub Desktop.
Save briangreenery/97677414b7d1efff377e to your computer and use it in GitHub Desktop.
fn count_zeros<T>(digits: &Vec<T>) -> usize {
let mut count = 0;
for digit in digits {
if *digit == 0 {
count += 1;
}
}
count
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment