Skip to content

Instantly share code, notes, and snippets.

@rchrand
Created September 16, 2012 09:47
Show Gist options
  • Save rchrand/3731814 to your computer and use it in GitHub Desktop.
Save rchrand/3731814 to your computer and use it in GitHub Desktop.
Java - int min
public int min(){
int minimum = list.get(0);
for (int i: list){
if (i <= minimum) {
minimum = i;
}
}
return minimum;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment