Created
April 8, 2018 16:33
-
-
Save sajjadyousefnia/1b284104e90d84844aba3fd13632539d 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 postalCodesHashMap: java.util.LinkedHashMap<String, String> = | |
linkedMapOf("NG" to "Nigeria","AU" to "Australia","CA" to "Canada") | |
postalCodesHashMap.put("NA", "Namibia") | |
postalCodesHashMap.remove("AU") | |
postalCodesHashMap.get("CA") // Canada |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment