Square Every Digit

Instructions: Welcome. In this kata, you are asked to square every digit of a number and concatenate them.For example, if we run 9119 through the function, 811181 will come out, because 92 is 81 and 1...
0 Read More

Powers of 2

Instructions: Complete the function that takes a non-negative integer n as input, and returns a list of all the powers of 2 with the exponent ranging from 0 to n ( inclusive ).Examples n = 0 ==> [...
0 Read More

Difference of Volumes of Cuboids

Instructions: In this simple exercise, you will create a program that will take two lists of integers, a and b. Each list will consist of 3 positive integers above 0, representing the dimensions of cu...
0 Read More