https://www.codetree.ai/training-field/frequent-problems/problems/matrix-number-play/submissions?page=1&pageSize=20&order=tier 코드트리 | 코딩테스트 준비를 위한 알고리즘 정석 국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요. www.codetree.ai 문제 종류 구현, 행열변환 풀이방법 이 문제는 단순히 특정 조건에 맞게 배열을 다시 구성해주면 되는 문제다. 조건 중 행과 열을 기준으로 배열을 재구성하는 로직이 있는데 행일 경우, 열일 경우를 다르게 생각하지말고 같은 로직을 수행한다고 생각하면 간단히 풀 수 있는 문제다. 행과열..
알고리즘
Insuition Problem link: https://leetcode.com/problems/jump-game-iv/ After assessing the problem, I believe that applying the BFS algorithm would be an effective solution. One of the key advantages of this approach is that it allows for multiple paths to be created from each index. For example, if we start at index i, we can traverse to i-1, i+1, or any other index j that has the same value as ar..
Intuition My first approach to this problem is that call method recursively and find out the next head (not duplicated) I assume that there are two possible cases My Approach if duplicated value exist next to current node current node should change to another node which value is not same with current node then return current node if duplicated value doesn`t exist next to current node return curr..