mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 18:58:31 +07:00
20 lines
479 B
Java
20 lines
479 B
Java
// "Replace with collect" "true"
|
|
import java.util.LinkedHashMap;
|
|
import java.util.Map;
|
|
|
|
public class Main {
|
|
private Map<String, Integer> test(String... list) {
|
|
Map<String, Integer> map = new LinkedHashMap<>();
|
|
for(String s : l<caret>ist) {
|
|
if(s != null) {
|
|
map.putIfAbsent(s, 1);
|
|
}
|
|
}
|
|
return map;
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
System.out.println(new Main().test("a", "bbb", null, "cc", "dd", "eedasfasdfs", "dd"));
|
|
}
|
|
}
|