Number Printer

Create a function that takes an Int as a parameter and prints it to the console the way an old-school alarm clock would look. You may create auxilary functions.

e.g. If you pass 257 the console might look something like this:

  ---   ---  ---
     | |        |
  ---   ---     |
 |         |    |
  ---   ---

Black Diamond

Modify the function to take an Int array and print each number in the same fashion but on its own line.