CodingBat mapBully solution April 05, 2017 Get link Facebook X Pinterest Email Other Apps public Map<String, String> mapBully(Map<String, String> map) { if (map.get("a")!=null) {map.put("b", map.get("a")); map.put("a", "");} return map;} Comments
Comments
Post a Comment