Browse Source

fix: edit signature of mapByFirstLetter to make it consistent with the tests (#2086)

CON-1801-MARKDOWN-Remove-VirtualBox-restriction-from-projects-with-generic-.iso-VM-images
zanninso 11 months ago committed by GitHub
parent
commit
064f523419
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      subjects/java/piscine/StreamCollect/README.md

2
subjects/java/piscine/StreamCollect/README.md

@ -12,7 +12,7 @@ Create a function `getMaxByModulo4` which return a map associating the modulo 4
```java
public class StreamCollect {
public static Map<Object, List<String>> mapByFirstLetter(Stream<String> s) {
public static Map<Character, List<String>> mapByFirstLetter(Stream<String> s) {
// your code here
}

Loading…
Cancel
Save