“Holen Sie sich Karte von Index Kotlin” Code-Antworten

Listen Sie die Karte nach Index und Wert Kotlin auf

numbers.mapIndexed { index: Int, value: String -> index to value }.toMap()
Stockholm

Holen Sie sich Karte von Index Kotlin

fun main(args: Array<String>) {

    var capitals = hashMapOf<String, String>()
    capitals.put("Nepal", "Kathmandu")
    capitals.put("India", "New Delhi")
    capitals.put("United States", "Washington")
    capitals.put("England", "London")
    capitals.put("Australia", "Canberra")

    val result = capitals.toList().sortedBy { (_, value) -> value}.toMap()

    for (entry in result) {
        print("Key: " + entry.key)
        println(" Value: " + entry.value)
    }
}
Stockholm

Ähnliche Antworten wie “Holen Sie sich Karte von Index Kotlin”

Fragen ähnlich wie “Holen Sie sich Karte von Index Kotlin”

Weitere verwandte Antworten zu “Holen Sie sich Karte von Index Kotlin” auf Kotlin

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen