Transportation on vacation

Transportation on vacation
Instructions: After a hard quarter in the office you decide to get some rest on a vacation. So you will book a flight for you and your girlfriend and try to leave all the mess behind you.You will need...
0 Read More

Reversed Strings

Reversed Strings
Instructions: Complete the solution so that it reverses the string passed into it.'world' => 'dlrow' 'word' => 'drow' Thoughts: I converted the string into an array to utilize the reverse()...
0 Read More

Remove String Spaces

Remove String Spaces
Instructions: Write a function that removes the spaces from the string, then return the resultant string.Examples (Input -> Output):"8 j 8 mBliB8g imjB8B8 jl B" -> "8j8mBliB8gimjB8B8jlB" "8...
0 Read More

DNA to RNA Conversion

DNA to RNA Conversion
Instructions: Deoxyribonucleic acid, DNA is the primary information storage molecule in biological systems. It is composed of four nucleic acid bases Guanine ('G'), Cytosine ('C'), Adenine ('A'), and ...
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

Convert a Number to a String!

Instructions: We need a function that can transform a number (integer) into a string. What ways of achieving this do you know?Examples (input --> output): 123 --> "123" 999 --> "999" -100 -...
0 Read More