we will introduce a type of circuit puzzle in which the solver is presented with a grid of "tiles" each with "wires" printed on them. The solver is then expected to rotate each tile in the grid so that all of the wires connect together to form a complete circuit. Moreover, each puzzle will contain at least one tile that is a "source" tile for the circuit, and at least one tile that is a "sink" tile. A completed circuit will ensure that every sink is reachable from a source and vice-versa. There may however be multiple sources and multiple sinks. The grid may be of any rectangular size and will be given as a list of non-empty lists of Tile values. A Tile value is value of the data type given by: data Edge = North | East | South | West deriving (Eq,Ord,Show,Read) data Tile = Source [ Edge ] | Sink [ Edge ] | Wire [ Edge ] deriving (Eq,Show,Read) type Puzzle = [ [ Tile ] ] where a Tile simply lists which of its edges offer connection of wires. The Source and Sink tiles must contain at least one connector edge and Wire tiles must contain either zero (an empty Tile) or at least two connector edges. Duplicate entries in the edges list are ignored and order does not matter. Connector edges are considered to connect across two Tiles if they share a connector edge. For example, a Tile offering a West connector placed to the right of a Tile offering an East connector would have a connecting wire. A Wire Tile is connected if all of its connector edges are connected. Similarly Source and Sink tiles are connected if, all of their connector edges are connected.An example 3x3 puzzle is given below followed by a visual representation of the puzzle: [ [ Wire [North,West] , Wire [North,South] , Source [North] ], [ Wire [North,West], Wire [East,West], Wire [North,East] ], [ Sink [West] , Wire [North,South] , Wire [North,West] ] ].The first challenge requires you to define a function isPuzzleComplete :: Puzzle -> Bool that, given a list of list of tiles, simply returns whether the puzzle is completed. That is, this function returns True if and only if all Tiles are connected, for every Source tile, there exists a path following the wires to at least one Sink tile and for every Sink tile, there is a path following the wires to at least one Source tile