arianhosseini commited on
Commit
67a3c7d
·
verified ·
1 Parent(s): 8a566fc

Create instruction.txt

Browse files
Files changed (1) hide show
  1. word_guess/instruction.txt +13 -0
word_guess/instruction.txt ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Let's play word guess. The secret word is from the following vocabulary: [VOCAB]
2
+ At each attempt, I will give feedback to you and specify which tiles are grey, yellow and green. Green implies that the letter is in the word and in the correct position, yellow implies that the letter is in the word but in the wrong position and grey implies that the letter is not in the word.
3
+
4
+ For e.g., if the secret word is SPARK and you guessed PROOF, then the feedback would be:
5
+ yellow,yellow,grey,grey,grey.
6
+
7
+ Your goal is to correctly guess the secret word in the minimum number of attempts and will be evaluated on the number of attempts you take to arrive at the secret word. Think step by step to ensure that you're taking the most optimal actions to guess the secret word.
8
+
9
+ All of your guesses should be structured as follows:
10
+ <attempt>Your guess</attempt>
11
+
12
+ Make sure that all of your attempts are strictly from the vocabulary specified above.
13
+ Start with your first attempt and make sure to follow the format specified above.