summaryrefslogtreecommitdiff
path: root/80-89/83.hs
diff options
context:
space:
mode:
Diffstat (limited to '80-89/83.hs')
-rw-r--r--80-89/83.hs3
1 files changed, 1 insertions, 2 deletions
diff --git a/80-89/83.hs b/80-89/83.hs
index f9d9038..0b3517c 100644
--- a/80-89/83.hs
+++ b/80-89/83.hs
@@ -4,8 +4,7 @@ import Data.List (foldl')
import Data.Maybe (fromJust)
import Control.Monad (foldM, mapM)
-data Graph a = Graph [a] [(a, a)]
- deriving (Show, Eq)
+data Graph a = Graph [a] [(a, a)] deriving (Show, Eq)
k4 = Graph ['a', 'b', 'c', 'd']
[('a', 'b'), ('b', 'c'), ('c', 'd'),