영어 끝말잇기1 [프로그래머스] L2 영어 끝말잇기 [프로그래머스] L2 영어 끝말잇기 [풀이] 두 가지 조건에 유의하여 구현한다. 1. 앞 단어의 마지막 글자와 뒷 단어의 첫 글자가 같은지 여부(구현) 2. 이전에 나온 단어인지(HashSet 사용) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 import java.util.*; class Solution { public int[] solution(int n, String[] words) { int[] answer = new int[] {0,0}; Set set = new HashSet(); set.add(words[0]); for(int i=1; i 2020. 12. 15. 이전 1 다음