package eecs2030.test5; import java.util.List; public class Test5C { private Test5C() { // prevent instantiation } public static String removeA(String s) { // NOTE: You must not use any of the replace-like methods // from String or List to solve this question. } public static int sumSkip(List t) { } }