Files
2025-02-05 04:43:28 +00:00

10 lines
241 B
Plaintext

import java.util.List;
public class X {
boolean test(List<String> list) {
return list.stream().anyMatch(s -> {
<spot>String lower = s.toLowerCase();</spot>
return lower.equals("test");
});
}
}