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 Creating the MVP Remaining Tries

I am getting 6 tries instead of 7...

When I run the program on the console I am getting "You have 6 tries left to solve" instead of 7... I don't know what it could be... At the begining I thought that was a scope issue but it doesn't seem that

https://w.trhou.se/25agt0r7e5

1 Answer

Dave StSomeWhere
Dave StSomeWhere
19,870 Points

I think your issue is that you are initializing misses to a space instead of an empty string. So the first time through misses.length will equal 1.

// in Game.java
// should be "" not " " (also hits should be fixed)
misses = " ";

// then this should be evaluated correctly
public int getRemainingTries(){
    return MAX_MISSES - misses.length();
  }

:palm_tree: :tropical_drink:

Yes, it works now, thank you :D