// "Replace loop with 'List.replaceAll()'" "true" import java.util.List; class Main { void modifyStrings(List strings) { strings.replaceAll(s -> s.trim().toLowerCase()); } }