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 trialJude Brown
Courses Plus Student 629 PointsDistanceToFly
Hello,
I get that If the the distance between the frog and target is <= to the length of the frogs tongue then I should return true. I am having trouble writing the method that makes this possible. Thanks in advance - Jude.
namespace Treehouse.CodeChallenges
{
class Frog
{
public readonly int TongueLength;
public Frog(int tongueLength)
{
TongueLength = tongueLength;
}
public bool Eatfly(distanceToFly)
{
bool distanceToFly <= tongueLength;
return distanceToFly;
}
}
}
2 Answers
Steven Parker
231,198 PointsIt looks like you started to create an intermediate variable to store and return the comparison result but never named it. But you don't really need one, just move the comparison itself to the "return" statement.
Jude Brown
Courses Plus Student 629 PointsTHANK YOU!!!