APL Quest 2014 Problems
Write a function that takes the length of the legs of a triangle as its left argument, and the length of the hypotenuse as its right argument and returns 1 if the triangle is a right triangle, 0 otherwise.
Write a function which takes a character vector and removes the interior vowels from each word.
Write a function that takes an integer right argument and returns that number of terms in the Fibonacci sequence.
Write a function that removes extraneous (leading, trailing, and multiple) spaces from a character vector.
Write a function which returns a 1 if its character vector argument is a palindrome, 0 otherwise.
Write a function that takes an integer vector representing the sides of a number of dice and returns a 2 column matrix of the number of ways each possible total of the dice can be rolled.
Write a function which takes the diameters of the stationary and mobile circles and returns the number of revolutions the mobile must traverse until the tangent points meet again.
Write a function that returns the distance between two points in a space of any number of dimensions.
Write a function which calculates the distance (in meters) a projectile travels given an initial velocity in meters per second and a trajectory in degrees.
Write a function that returns the greatest percent month to month increase.