Created
April 8, 2018 11:34
-
-
Save sajjadyousefnia/ccf3e68707ba5f835619465bf4a7ffb1 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 personsHashMap: java.util.HashMap<Int, String> = hashMapOf(1 to "Chike", 2 to "John", 3 to "Emeka") | |
personsHashMap.put(4, "Chuka") | |
personsHashMap.remove(2) | |
print(personsHashMap[1]) // will print Chike |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment