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 trial

Java Java Objects (Retired) Creating the MVP For Each Loop

For Each Loop Challenge

I Need Some Help With This One?? Not Sure What I Need To Do For It.

ScrabblePlayer.java
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 (){

  }


}
Ivan Sued
Ivan Sued
5,969 Points

I 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.

Ivan, for see what the task asking click in title block code "ScrabblePlayer.java" .

Ivan Sued
Ivan Sued
5,969 Points

Didn't know that. Thanks

1 Answer

Hey 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? >>;
  }

Thanks Bro