https://leetcode.com/problems/find-the-winner-of-the-circular-game/submissions/1296968550/ deque요세푸스josephus 1. 문제 및 접근 1823. Find the Winner of the Circular Game n명이 게임을 하는데, 1부터 n명까지 시계방향으로 돌아가고k가 주어지면 1번부터 시작해k번 떨어진 수의 사람을 돌며 탈락시킴원형이라 반복하며 마지막에 남은 친구가 승리하고 그 친구 반환deque로 구현하면 쉬울 것 같다. 1,2,3,4,5 k =2 [1,3,4,5] -2, [1,3,5] -4, [3,5] -3 [5] winner 5 Constraints:1 2. 풀이 public int..