#6kyu
Read more stories on Hashnode
Articles with this tag
Instructions Your task, is to create N×N multiplication table, of size provided in parameter. For example, when given size is 3: 1 2 3 2 4 6 3 6...
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⁶...