Created
May 29, 2022 18:48
-
-
Save halilozel1903/eab63ac15946a89ae0e829d3cfc89d7e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val mapTwo = hashMapOf<Double, Boolean>(19.93 to true, 19.97 to false, 19.95 to true) | |
val mapFour = hashMapOf<String, Boolean>() | |
println(mapTwo.contains(19.95)) | |
println(mapFour.contains("Halil")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment