Files
2026-01-16 13:57:13 +00:00

9 lines
204 B
Java

// "Replace loop with 'List.replaceAll()'" "true"
import java.util.List;
class Main {
void modifyList(List<Integer> list) {
Random random = new Random();
list.replaceAll(ignored -> 42);
}
}