File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
exercises/concept/international-calling-connoisseur/.docs Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 2222
2323## 5. Find a country's dialing code
2424
25- - There is a [ way] [ map-values- docs ] to get an iterable collection of values in a map.
25+ - There is a [ way] [ map-entry-set- docs ] to get an iterable collection of entries in a map, which allows you to go through the key-value pairs .
2626
2727## 6. Update the country's dialing code
2828
3535[ map-get-docs ] : https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/util/Map.html#get(java.lang.Object)
3636[ map-contains-key-docs ] : https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/util/Map.html#containsKey(java.lang.Object)
3737[ map-contains-value-docs ] : https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/util/Map.html#containsValue(java.lang.Object)
38- [ map-values- docs ] : https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/util/Map.html#values ()
38+ [ map-entry-set- docs ] : https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/util/Map.html#entrySet ()
3939[ map-remove-docs ] : https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/util/Map.html#remove(java.lang.Object)
You can’t perform that action at this time.
0 commit comments