Chapter 3
Developing a Word Game
Section 3
Searching for Words
So we want to search the grid from left to right, right to left, top to bottom, and diagonally... phew! Let's keep things simple for now by searching just from left to right. We'll explore list manipulation functions and the similarities between the Bool and Maybe types. - Search a string with 'isInfixOf' and write our first searching functions - Learn about 'map,' a vital part of the functional programming toolkit for working with lists - When a simple Boolean value doesn't quite cut it, never fear, we can upgrade to the 'Maybe' type