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 trialIgnacio Uriz
5,042 PointsI donΒ΄t get Scramble titles task 2 of 2
I am not sure if is a scope problem.
public class ScrabblePlayer {
// A String representing all of the tiles that this player has
private String tiles;
private String noTitles;
private String yesTitles;
public ScrabblePlayer() {
tiles = "";
noTitles="";
yesTitles ="";
}
public String getTiles() {
return tiles;
}
public void addTile(char tile) {
// TODO: Add the tile to tiles
tiles += tile;
}
public boolean hasTile(char tile) {
// TODO: Determine if user has the tile passed in
boolean goodTitle = titles.indexOf(title) != -1;
if(goodTitle){
yesTitle += title;
}
else {
noTitle += title;
}
}
}
2 Answers
Evan Demaris
64,262 PointsHi Ignacio,
It looks like tiles was confused with titles in your code; noTitles
and yesTitles
were included as unneeded variables, and your code also introduces an undeclared variable titles
to the hasTile
function.
I've included a passing version of the code below. Hope that helps!
public class ScrabblePlayer {
// A String representing all of the tiles that this player has
private String tiles;
public ScrabblePlayer() {
tiles = "";
}
public String getTiles() {
return tiles;
}
public void addTile(char tile) {
// TODO: Add the tile to tiles
tiles += tile;
}
>! public boolean hasTile(char tile) {
// TODO: Determine if user has the tile passed in
return tiles.indexOf(tile) > -1 ;
}
}
Hope that helps!
Ignacio Uriz
5,042 PointsThank you