Open sergeylukichev opened 4 years ago
//"abc defG ikl" -> "ABC defG IKL" // length == 3 -> toUpperCase public static String transform(String sentence) { return null; }
Implement using functional interfaces in Java
String transform(String sentence, Predicate<String> p, Function<String, String> f)
Implement using functional interfaces in Java