In the class LambdaExercise, create following static variables
1. countries of type List<String>
2. countryCapitals of type Map<String, String>
public class LambdaExercise {
public static List<String> countriesOfType;
public static Map<String, String> countryCapitalsOfType;
}
Comments
Leave a comment