Skip to content

Commit

Permalink
Fix eclipse#292: Add implementation to TextProcessorJDK.getHaikuAsCha…
Browse files Browse the repository at this point in the history
…rs() for haiku-kata-solutions module
  • Loading branch information
bhsingla committed Sep 22, 2023
1 parent 52070f7 commit 142deba
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ public IntStream getHaikuAsChars()
{
// TODO: Create an IntStream representing the chars from this.getHaiku()
// Hint: Look at the chars() method on the String class
return null;
return this.getHaiku().chars();
// return null;
}

public List<Map.Entry<Character, Long>> topLetters()
Expand Down

0 comments on commit 142deba

Please sign in to comment.