Implement a function to load the provided ASCII banner file (like shadow.txt,standard.txt, thinkertoy.txt).
This function should read the ASCII representation of each character and store it in a data structure (e.g., a map where keys are characters and values are 8-line ASCII representations).
Acceptance Criteria:
The function reads the banner file correctly.
The map data structure should allow access to any character's ASCII representation.
Ensure that special characters such as spaces, \n, and others are supported.
Description:
shadow.txt
,standard.txt
,thinkertoy.txt
).Acceptance Criteria: