Given a number n, return a sentence which describes the number in the following ways.
n is evenly divisible by 1, add "brilliant " to the sentence.n is evenly divisble by 2, add "exciting " to the sentence.n is evenly divisible by 10, add "inspiring " to the sentence.n!".describeNum(13) ➞ "The most brilliant number is 13!"
// 13 is evenly divisble by 1 only
describeNum(4) ➞ "The most brilliant exciting virtuous number is 4!"
// 4 is evenly divisible by 1, 2 and 4
describeNum(21) ➞ "The most brilliant fantastic beautiful number is 21!"
// 21 is evenly divisible by 1, 3 and 7
describeNum(60) ➞ "The most brilliant exciting fantastic virtuous heart-warming tear-jerking inspiring number is 60!"
// 60 is evenly divisible by 1, 2, 3, 4, 5, 6 and 10