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.

Thomas Verst
725 PointsCan´t resolve the challenge
I couldn't resolve the challenge, please help me. I am at the second task: Correct the existing hasTile method to return true if the tile is in the tiles field, and false if it isn't. You can solve this a few ways, however, I'd like you to practice returning the result of the expression that uses the index of a char in a String.
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) {
tiles += tile;
}
public boolean hasTile(char tile) {
}
}
What should I do?
2 Answers

Fahad Mutair
10,359 Pointspublic boolean hasTile(char tile) {
// TODO: Determine if user has the tile passed in
return tiles.indexOf(tile) != -1;
}

Siu KWAN Yuen
Courses Plus Student 2,898 PointsI have been amazed by how simple the code can be and I wrote it so wrong using an if statement.

Jonathan Ary
5,668 Pointsme too
Thomas Verst
725 PointsThomas Verst
725 PointsThank you!
mark himself
2,048 Pointsmark himself
2,048 Pointsthank you!! i had the same problem