Skip to content

Instantly share code, notes, and snippets.

@HennIdan
Last active December 24, 2017 16:03
Show Gist options
  • Save HennIdan/28c58af3839c72e8dbedcdc852ed94c8 to your computer and use it in GitHub Desktop.
Save HennIdan/28c58af3839c72e8dbedcdc852ed94c8 to your computer and use it in GitHub Desktop.
public int forMaxInteger() {
int max = Integer.MIN_VALUE;
for (int i = 0; i < size; i++) {
max = Integer.max(max, integers.get(i));
}
return max;
}
@clankill3r
Copy link

size is undeclared

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment