// "Remove the 'contains' check" "false" import java.util.List; class Test { void test(List list, String key) { if(!list.contains(/*contains!!!*/key)) { list.remove(/*remove!!!*/key); } } }