Skip to content

Instantly share code, notes, and snippets.

@iarash84
Created March 7, 2023 07:28
Show Gist options
  • Save iarash84/a0d154a49fefe51d75edb634533cffb0 to your computer and use it in GitHub Desktop.
Save iarash84/a0d154a49fefe51d75edb634533cffb0 to your computer and use it in GitHub Desktop.
simple template
template<typename T>
T findMax(T arr[], int size) {
T max = arr[0];
for (int i = 1; i < size; i++) {
if (arr[i] > max) {
max = arr[i];
}
}
return max;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment