All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g1401_1500.s1436_destination_city.Solution.kt Maven / Gradle / Ivy

There is a newer version: 1.28
Show newest version
package g1401_1500.s1436_destination_city

// #Easy #String #Hash_Table #2023_06_07_Time_174_ms_(77.78%)_Space_36.8_MB_(44.44%)

class Solution {
    fun destCity(paths: List>): String {
        val set: MutableSet = HashSet()
        for (strings in paths) {
            set.add(strings[0])
        }
        for (path in paths) {
            if (!set.contains(path[1])) {
                return path[1]
            }
        }
        return ""
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy