Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Dino Naseib
878 PointsWhat am i missing here?
public boolean addTile(char tile) { boolean isTile = tiles.indexOf(tile) != -1; if (isTile) { tile += tiles; } return isTile; }
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 boolean addTile(char tile) {
boolean isTile = tiles.indexOf(tile) != -1;
if (isTile) {
tile += tiles;
}
return isTile;
}
}
public boolean hasTile(char tile) {
// TODO: Determine if user has the tile passed in
return false;
}
}
Christopher Janke
11,054 PointsChristopher Janke
11,054 PointsaddTile() is just to add the tile to the players existing tiles. Remove the boolean from the method and add void since it isn't returning anything, it should look like this:
The hasTile() method is where you return the boolean value. The challenge asks that you complete it without an "if" statement as well. Just return it all in one. it will return true if the player has it already. :)