// "Replace with 'compute()' call" "false" import java.util.Map; public class Main { public void testCompute(Map map, String key) { Integer value = map.get(); map.put(key, value == null ? 0 : value + 1); } }