美文网首页
1436. 旅行终点站

1436. 旅行终点站

作者: 漫行者_ | 来源:发表于2021-10-01 13:43 被阅读0次

1436. 旅行终点站

easy题,不解释

class Solution {
    public String destCity(List<List<String>> paths) {
        Map<String, String> map = new HashMap<String, String>();
        for(int i=0; i<paths.size(); i++) {
            map.put(paths.get(i).get(0), paths.get(i).get(1));
        }
        for(int i=0; i<paths.size(); i++) {
            if(!map.containsKey(paths.get(i).get(1))) {
                return paths.get(i).get(1);
            }
        }
        return "";
    }
}

相关文章

网友评论

      本文标题:1436. 旅行终点站

      本文链接:https://www.haomeiwen.com/subject/jykunltx.html