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

Every one of these challenges fails for me but works perfectly locally using IntelliJ

Every one of these download and upload tasks fails for me, the code works perfectly in IntelliJ and all the tests pass. All the formatting appears to be correct and I'm unsure where this is going wrong.

Starting to become a bit frustrating.

  public static void printBurgerTimeScoresDeclaratively(List<Score> scores) {
    // TODO: Open a stream off of scores and filter "Burger Time" scores that are larger than 20,000
    // TODO: Print out those scores using the forEach method off of the Stream

   scores.stream()
     .filter(score -> score.getGame().equals("Burger Time"))
     .filter(score -> score.getAmount() >= 20000)
     .forEach(System.out::println);

}}

The code yields the desired result so I'm not sure whats going wrong

2 Answers

Craig Dennis - Would be awesome to get your input here

This has been an issue since at least 2018 by the looks of all these posts and no one has ever got an answer and no one from Treehouse has ever responded. I even sent them an email about this directly ad never heard anything back. It's really bad user communication and support I think.