// "Replace !Stream.anyMatch(...) with noneMatch(...)" "true" import java.util.*; class Test { public boolean testAnyMatch(List> data) { if(!data.stream().flatMap(Collection::stream).anyMatch(str -> str.isEmpty())) return true; } }