From e2e2852739e9882519e52949ca9df2b655493814 Mon Sep 17 00:00:00 2001 From: JOLIMAITRE Matthieu Date: Tue, 30 Apr 2024 18:21:22 +0200 Subject: [PATCH] update readme --- README.md | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/README.md b/README.md index c79560d..f3c80b6 100644 --- a/README.md +++ b/README.md @@ -28,3 +28,67 @@ Programme pour résolution de Tusmo. # -n, --length - Length of the word to use from the dictionnary. (Default: 6) # -w, --wait - Time to wait between guesses, in ms. (Default: 0) ``` + +### Proxy + +```sh +./src/manual_proxy.ts +# Please input initial state of the game. Format is : +# letter [a-z] known letter +# dot . unknown letter +# example : .rb.. + +# initial : a.... + +# From now on, please try the following guesses and report results. Format is : +# plus + correct +# minus - wrong placement +# dot . incorrect +# example : -++.. + +# Guessing: aires +# Result: +.--. + +# Knows: ..... +# Guessing: aires +# Got: #.**. + +# Guessing: acere +# Result: +..++ + +# Knows: a.... +# Guessing: acere +# Got: #..## + +# Guessing: arabe +# Result: ++.-+ + +# Knows: a..re +# Guessing: arabe +# Got: ##.*# + +# Guessing: aveux +# Result: +.-.. + +# Knows: ar.re +# Guessing: aveux +# Got: #.*.. + +# Guessing: album +# Result: +.+.. + +# Knows: ar.re +# Guessing: album +# Got: #.#.. + +# Guessing: arbre +# Result: +++++ + +# Knows: arbre +# Guessing: arbre +# Got: success + +# Stopped on arbre . +# With success . +# In 6 steps +```