private void exercise1() { | |
StringBuilder result = new StringBuilder(); | |
Arrays.asList("alpha", "bravo", "charlie", "delta", "echo", "foxtrot") | |
.forEach(word -> result.append(word.charAt(0))); | |
System.out.println(result); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment