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 Storing Guesses

I tried everything I can but still my correct answer is not accepted by your quiz in question #2 can your Pls help

Can you also please help me write out the hasTile method? It should return true if the hand has the tile, and false if it doesn't. Thanks!

Could you post what the quiz question is asking? Also, the hasTile method (going off of memory) should look like this:

public boolean hasTile(char tile){

    for(char letter : mHand.toCharArray()){
        if(letter == tile)
            return true;  
    }
    return false;
}

I highly appreciate Thanks for the reply and help

3 Answers

Mallikarjuna A S
seal-mask
.a{fill-rule:evenodd;}techdegree
Mallikarjuna A S
Python Web Development Techdegree Student 7,017 Points

You can compare both character using character.compare(letter).compare(tile) ( comfirm the syntax ) the return value is integer . If the character matches return value is 0 , then retrun true

Thank you very much Mallikarjuna Shivappa