개발/알고리즘
[프로그래머스] 단체사진 찍기
문제 https://programmers.co.kr/learn/courses/30/lessons/1835 코딩테스트 연습 - 단체사진 찍기 단체사진 찍기 가을을 맞아 카카오프렌즈는 단체로 소풍을 떠났다. 즐거운 시간을 보내고 마지막에 단체사진을 찍기 위해 카메라 앞에 일렬로 나란히 섰다. 그런데 각자가 원하는 배치가 모두 programmers.co.kr 풀이 class Solution { char[] chars = new char[]{'A', 'C', 'F', 'J', 'M', 'N', 'R', 'T'}; int[] visit = new int[chars.length]; String str = ""; String[] data; int answer = 0; public int solution(int n, ..
2021. 9. 9. 00:00
최근댓글