Hello everybody. I have this question : I need to create a paradict "rightGuesses" which will get 3 arguments , each one of them is a list of letters :
1) The list of guessed letters
2) The word i have to guess
3) The letters that where guessed so far .
for example :
rightGuesses([n,o,p,q], [p,r,o,l,o,g], Ans).
will give us Ans = [p, -, o,
…