feat: implement nextGuess with a basic strategy: guess every possible chord

This commit is contained in:
wi11-holdsworth 2025-09-25 11:49:25 +10:00
parent 4618e32d77
commit e26b60a9ed

View file

@ -110,4 +110,4 @@ allNotes = [minBound .. maxBound]
-- implement me -- implement me
nextGuess :: ([Pitch], GameState) -> (Int, Int, Int) -> ([Pitch], GameState) nextGuess :: ([Pitch], GameState) -> (Int, Int, Int) -> ([Pitch], GameState)
nextGuess _ _ = ([], [[]]) nextGuess (prevGuess, chord : chords) _ = (chord, chords)