Java - Wrapper Classes
Given a list of strings representing numbers, which code snippet correctly converts them to a list of Integer objects using wrapper methods?
ListstrNums = List.of("1", "2", "3"); // Fill in the blank List intNums = strNums.stream()._____.collect(Collectors.toList());
