79171197

Date: 2024-11-08 18:41:23
Score: 3.5
Natty:
Report link
    String[][] matrix = new String[][]{
            {"", "why ", "did ", "I ", "lose ", "reputation ", " ", ""},
            {"", "points ", "for ", "this ", "question? ", "(dk)", "", ""}};

    Arrays.stream(matrix, 0, 2)
            .flatMap(s -> Arrays.stream(s, 1, 7))
            .forEach(System.out::print);
}

why did I lose reputation points for this question? (dk)

Reasons:
  • RegEx Blacklisted phrase (1.5): reputation
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): why did I
  • Low reputation (1):
Posted by: Dominic J