refactor: mark guess functions for implementation
This commit is contained in:
parent
3654485f23
commit
6f600ff149
1 changed files with 4 additions and 2 deletions
6
Proj2.hs
6
Proj2.hs
|
|
@ -27,8 +27,10 @@ toPitch _ = Just (Pitch 'A' 1)
|
|||
feedback :: [Pitch] -> [Pitch] -> (Int, Int, Int)
|
||||
feedback _ _ = (0, 0, 0)
|
||||
|
||||
-- implement me
|
||||
initialGuess :: ([Pitch], GameState)
|
||||
initialGuess = ([Pitch 'A' 1], ())
|
||||
initialGuess = ([], [[]])
|
||||
|
||||
-- implement me
|
||||
nextGuess :: ([Pitch], GameState) -> (Int, Int, Int) -> ([Pitch], GameState)
|
||||
nextGuess _ _ = ([Pitch 'A' 1], ())
|
||||
nextGuess _ _ = ([], [[]])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue