Articles in this series
Instructions The Fibonacci numbers are the numbers in the following integer sequence (Fn): 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233,...
Instructions A Narcissistic Number (or Armstrong Number) is a positive number which is the sum of its own digits, each raised to the power of the...
Instructions Write a function that takes in a string of one or more words, and returns the same string, but with all five or more letter words...
Instructions Some numbers have funny properties. For example: 89 --> 8¹ + 9² = 89 * 1 695 --> 6² + 9³ + 5⁴= 1390 = 695 * 2 46288 --> 4³ + 6⁴+ 2⁵ + 8⁶...