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 trialLachlan Kruger
Courses Plus Student 1,868 PointsFor Each Loop Challenge
I Need Some Help With This One?? Not Sure What I Need To Do For It.
public class ScrabblePlayer {
private String mHand;
public ScrabblePlayer() {
mHand = "";
}
public String getHand() {
return mHand;
}
public void addTile(char tile) {
// Adds the tile to the hand of the player
mHand += tile;
}
public boolean hasTile(char tile) {
return mHand.indexOf(tile) > -1;
}
public char getTileCount (){
}
}
Luiz Carlos
15,714 PointsIvan, for see what the task asking click in title block code "ScrabblePlayer.java" .
Ivan Sued
5,969 PointsDidn't know that. Thanks
1 Answer
Luiz Carlos
15,714 PointsHey you need add a char parameter in your method for look for in String.
public int getTileCount(char tile)
{
int count = 0;
for( char c : << String.methodArrayOfChar Are you remember this? >>)
{
if ( << c equal tile >> )
{
//TODO increment count
}
}
return << what? >>;
}
Lachlan Kruger
Courses Plus Student 1,868 PointsThanks Bro
Ivan Sued
5,969 PointsIvan Sued
5,969 PointsI think Luiz managed to answer this question for you with the missing char. I do have a suggestion for asking questions. It would be beneficial for others to see what the task is asking so we can then tell you what you need.