[kotlin] 맵(Map)의 특정 키(Key)가 존재하는지 확인하는 방법은 무엇인가요?
fun main() {
    val map = mapOf("a" to 1, "b" to 2, "c" to 3)

    if (map.containsKey("a")) {
        println("Key 'a' exists in the map.")
    } else {
        println("Key 'a' does not exist in the map.")
    }
}

위의 예시 코드에서 containsKey 메서드를 사용하여 키가 맵 안에 존재하는지 확인하고, 그 결과에 따라 메시지를 출력하고 있습니다.

자세한 정보는 Kotlin 공식 문서를 참고하시기 바랍니다. Kotlin Maps - Containment