Stuck with lambda expression and Map
问题 I have the Person class: import java.util.*; public class Person { private String name; Map<String,Integer> Skills=new HashMap<>(); // skill name(String) and level(int) public String getName(){ return this.name; } public Map<String,Integer> getSkills(){ return this.Skills; } } And the App class: import java.util.*; import java.util.Map.Entry; import static java.util.stream.Collectors.*; import static java.util.Comparator.*; public class App { private List<Person> people=new ArrayList<>(); //