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 trialVenkata Bhargav
8,130 PointsScrabble Player task 2
Error: While you could definitely solve this using an if statement, try returning the result of the expression.
I really don't get Why I am getting this error. I think I did everything right.
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
if (tiles.indexOf(tile) != -1) {
return true;
}else {
return false;
}
}
}
2 Answers
Steven Parker
231,184 PointsThe message is acknowledging that your code would work, but they want you to solve it in a more concise way.
They are giving you the hint: "try returning the result of the expression", which you can implement by having just a single "return" and instead of "true" or "false, give it it expression you used in the "if" statement.
Venkata Bhargav
8,130 PointsYes. You are right. I realised it later. Thank you for looking into this :)