2018.10.03 Cow Signal

USACO Bronze December 2016, Question 2.

We worked on the Cow Signal problem.

To make your writing simpler, you should use the signature below. The very last step of printing out everything on its own line is not an important part of the problem.

cowSignal :: Int -> [String] -> [String]

Printing on multiple lines: use \n like this:

x = "This\nstring\nprints\non\nmany\nlines"
main = do putStrLn x

Solution discussed period 2.

Last modified August 18, 2023: 2022-2023 End State (7352e87)