1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/challenges/ascii-art
2023-08-21 23:11:08 +02:00
..
solutions fix: avoid usage of .unwrap in Rust solutions 2023-08-21 22:45:05 +02:00
test feat(challenges): add ascii-art 2022-05-01 20:07:35 +02:00
led_display.jpg feat(challenges): add ascii-art 2022-05-01 20:07:35 +02:00
README.md feat(challenges): add single-number 2023-08-21 23:11:08 +02:00

ascii-art

Created by @theoludwig on 1 May 2022.

Instructions

Goal

In stations and airports you often see this type of screen:

Led Display

Have you ever asked yourself how it might be possible to simulate this display on a good old terminal? We have: with ASCII art!

Rules

ASCII art allows you to represent forms by using characters. To be precise, in our case, these forms are words. For example, the word "MANHATTAN" could be displayed as follows in ASCII art:

# #  #  ### # #  #  ### ###  #  ###
### # # # # # # # #  #   #  # # # #
### ### # # ### ###  #   #  ### # #
# # # # # # # # # #  #   #  # # # #
# # # # # # # # # #  #   #  # # # #

Your mission is to write a program that can display a line of text in ASCII art in a style you are given as input.

Input

  • Line 1: The width W of a letter represented in ASCII art. All letters are the same width.
  • Line 2: The height H of a letter represented in ASCII art. All letters are the same height.
  • Line 3: The line of text T, composed of N ASCII characters.
  • Following lines: the string of characters ABCDEFGHIJKLMNOPQRSTUVWXYZ? Represented in ASCII art.

Output

The text T in ASCII art.

The characters a to z are shown in ASCII art by their equivalent in upper case.

The characters that are not in the intervals [a-z] or [A-Z] will be shown as a question mark in ASCII art.

Constraints

  • 0 < W < 30
  • 0 < H < 30
  • 0 < N < 200

Source

CodinGame

Examples

See the test folder for examples of input/output.