Dance for Cash

Published by Matt in

Your local bank has decided to upgrade its ATM machines by incorporating motion sensor technology. The machines now interpret a series of consecutive dance moves in place of a PIN number.

Create a function that converts a customer's PIN number to its dance equivalent. There is one dance move per digit in the PIN number. An array of dance moves is given in the code.

Examples

dance_convert("0000") ➞ ["Shimmy", "Shake", "Pirouette", "Slide"]

dance_convert("3856") ➞ [ "Slide", "Arabesque", "Pop", "Arabesque" ]

dance_convert("9999") ➞ [ "Arabesque", "Shimmy", "Shake", "Pirouette" ]

dance_convert("32a1") ➞ "Invalid input."

Notes

  • Each dance move will be selected from an array by index based on the current digit's value plus that digit's index value. If this value is greater than the last index value of the dance array, it should cycle to the beginning of the array.
  • Valid input will always be a string of four digits. Output will be an array of strings.
  • If the input is not four valid integers, return the string, "Invalid input."
Watch a quick demo on how Edabit works.