Skip to content

Instantly share code, notes, and snippets.

@thawkin3
Created August 24, 2022 18:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thawkin3/f6c329a5ee3268cfe95c287d1ca46150 to your computer and use it in GitHub Desktop.
Save thawkin3/f6c329a5ee3268cfe95c287d1ca46150 to your computer and use it in GitHub Desktop.
export const maxNumberArray = (numbers) => {
if (numbers.length <= 1) {
return numbers[0];
}
const numberA = numbers[0];
const numberB = maxNumberArray(numbers.slice(1));
return numberA > numberB ? numberA : numberB;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment