Challenge 1: Greatest Common Divisor
In this challenge, your task is to find the greatest common divisor of two numbers a and b.
We'll cover the following...
Problem Statement
Write a findGCD
function that takes in two numbers as input a
and b
and ...