Ad
  • Custom User Avatar

    The C# translation has been redone thorough the years, and most problems seem to be fixed: expected and actual were swapped, giving incorrect feedback, etc. OP's solution still fails because it's not valid.

  • Default User Avatar

    Same issue. Wondering if lines already present in a string count as new paragraphs to justify? IE "dolor", "sit", "amet," are considered full paragraphs.

  • Default User Avatar

    Same here :(

  • Custom User Avatar

    Got the same trouble on this input.
    With len = 15 result should look smth like this:

    Lorem~~~~~ipsum
    dolorsitamet,
    consectetur
    ....

    but instead test suggests
    Lorem~~~~~ipsum
    dolor
    sit
    amet,
    consectetur
    ...

  • Default User Avatar

    Same bug. I can validate my solution works as expected with manual verification, and the expected value makes no sense.

  • Default User Avatar

    Same here. This Kata's C# version is definetely bugged. Who has the power to undo such horrible mistake?

  • Custom User Avatar

    I have the same problem. I thought at first that maybe I had to account for newlines inside the source string, but even with that I get the same fail

  • Default User Avatar

    I'm also hung up on this condition. I don't see how any input len would yield the Expected output. "Lorem ipsum\n" on one line but then "dolor\nsit\n" on two lines doesn't make any sense.

  • Default User Avatar

    Solution presented in c# is wrong. Please fix it.