Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialYusuf Mohamed
2,631 PointsSomething wrong with the letter variable.
I don't know what's happening but I whenever I try to compile the code it gives 2 errors that is about the "letter" variable from getCurrentProgress. Here's the code.
class Game {
private String answer;
private String hits;
private String misses;
public Game(String answer) {
this.answer = answer;
hits = "";
misses = "";
}
public boolean applyGuess(char letter) {
boolean isHit = answer.indexOf(letter) != -1;
if(isHit) {
hits += letter;
} else {
misses += letter;
}
return isHit;
}
public String getCurrentProgress() {
String progress = "";
for ( char letter : answer.toCharArray()); {
char display = '-';
if (hits.indexOf(letter) != -1) {
display = letter;
}
progress += display;
}
return progress;
}
}
1 Answer
alastair cooper
30,617 Pointsremove the semi-colon(;) from after the brackets in the for loop
for ( char letter : answer.toCharArray()); {
should read
for ( char letter : answer.toCharArray()) {
Yusuf Mohamed
2,631 PointsYusuf Mohamed
2,631 PointsThanks again for the help!