Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Angelov, Georgi
cryptic-solver-haskell
Commits
1e92ffd4
Commit
1e92ffd4
authored
Oct 19, 2021
by
Georgi Angelov
Browse files
Added endpoint for solveWithAnswers
parent
914fdc60
Changes
1
Hide whitespace changes
Inline
Side-by-side
Server.hs
View file @
1e92ffd4
...
...
@@ -17,4 +17,16 @@ main = simpleHTTP myConf $ msum [ dir "solve" $ path $ \clue -> path $ \wordLeng
->
ok
$
show
(
solveAllReturn
(
clue
,
wordLength
))
,
dir
"solveWithAnswer"
$
path
$
\
clue
->
path
$
\
wordLength
->
path
$
\
answer
->
ok
$
show
(
solveWithAnswerReturn
(
clue
,
wordLength
)
answer
)
,
dir
"solveWithAnswers"
$
path
$
\
clue
->
path
$
\
wordLength
->
path
$
\
answers
->
ok
$
show
solveAnswers
clue
wordLength
answers
]
solveAnswers
clue
wordLength
answers
=
solveEach
clue
wordLength
(
wordsWhen
(
==
','
)
answers
)
where
solveEach
_
_
[]
=
[]
solveEach
clue
wordLength
(
a
:
as
)
|
null
(
solveWithAnswerReturn
(
clue
,
wordLength
)
a
)
=
solveEach
clue
wordLength
as
|
otherwise
=
head
(
solveWithAnswerReturn
(
clue
,
wordLength
)
a
)
:
solveEach
clue
wordLength
as
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment