Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 572 Bytes

InstructionsPart1.md

File metadata and controls

25 lines (17 loc) · 572 Bytes

Number to LCD

Instructions - Part 1

Write a program that given a number (with arbitrary number of digits), converts it into LCD style numbers using the following format:

   _  _     _  _  _  _  _  _  
 | _| _||_||_ |_   ||_||_|| |  
 ||_  _|  | _||_|  ||_| _||_|  

(each digit is 3 lines high)

Reminder

Please do NOT read the second part before completing the first. Part of the purpose of this kata is to make you practice refactoring and adapting to changing requirements.

Done with Part 1?

Here's the link to Part 2