This commit is contained in:
Rémi Heredero 2021-11-19 13:45:51 +01:00
parent 5976144673
commit 76eda5920f
2 changed files with 0 additions and 19 deletions

Binary file not shown.

View File

@ -5,25 +5,6 @@ import java.io.BufferedReader;
import java.io.FileReader;
import java.util.ArrayList;
/*public String[] loadList(String filePath) {
String[] wordList;
try {
BufferedReader bf = new BufferedReader(new FileReader(filePath));
ArrayList < String > al = new ArrayList < String > ();
while (bf.ready()) {
String[] c = bf.readLine().split(";");
al.add(c[0]);
}
wordList = al.stream().toArray(String[]::new);
System.out.println("[Dictionary loaded with " + wordList.length + " words]");
bf.close();
return wordList;
} catch(Exception e) {
e.printStackTrace();
return null;
}
}*/
public class HangMan {
final int MAX_STEPS = 8;
final int scale = 2;