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 trialjinhwa yoo
10,042 PointsI think I am not apt to this programming language??? help me I don't know..
I might need very easy examples..
Kevin Faust
15,353 PointsI know exactly how you feel. I found the entire track quite hard for beginners. As Brendan said, go through the concepts slowly and seek further information online if necessary!
ν¬κΈ° νμ§λ§μΈμ. νμ΄ν !!
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsThe hardest part of the earlier challenges is understanding all of the terminology and the style and syntax of a new language.
In the chanllenge Task 1, you are asked to add a "tile" to a player's "hand"
The "hand" is stored as the String mHand
. The "tiles" are simple characters. To add a tile to the hand, append the tile character to the mHand
string. In the video Storing Guesses Craig showed how to add characters to strings. This can be done using:
mHand += tile;
Brendan Whiting
Front End Web Development Techdegree Graduate 84,738 PointsBrendan Whiting
Front End Web Development Techdegree Graduate 84,738 PointsJust take it one step at a time. Make an attempt at this challenge, post your code, and then we can help you through it.