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 trialNino Herrera
13,780 PointsI 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!
Nino Herrera
13,780 PointsI highly appreciate Thanks for the reply and help
3 Answers
Mallikarjuna A S
Python Web Development Techdegree Student 7,017 PointsHello Nino herrera,
This Code Works
public boolean hasTile(char tile) { if(mHand.indexOf(tile) <0) { return false; } return true;
Mallikarjuna A S
Python Web Development Techdegree Student 7,017 PointsYou 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
Nino Herrera
13,780 PointsThank you very much Mallikarjuna Shivappa
Mallikarjuna A S
Python Web Development Techdegree Student 7,017 PointsYou are Welcome Nino herrera
Jeremy Hill
29,567 PointsJeremy Hill
29,567 PointsCould you post what the quiz question is asking? Also, the hasTile method (going off of memory) should look like this: