Skip to content

Instantly share code, notes, and snippets.

@Duckuism
Last active January 28, 2020 05:27
Show Gist options
  • Save Duckuism/17c3fb9b474ecdcffd8ee6463bb13ca2 to your computer and use it in GitHub Desktop.
Save Duckuism/17c3fb9b474ecdcffd8ee6463bb13ca2 to your computer and use it in GitHub Desktop.
getMinValueInByteArray
public int getMin(byte[] bytes){
int minValue = bytes[0];
for(int i = 0; i<bytes.length; i++){
if(bytes[i] <= minValue){
minValue = bytes[i];
}
}
return minValue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment