Open
Conversation
Contributor
There was a problem hiding this comment.
🏷️ 알고리즘 패턴 분석
- 패턴: Sliding Window
- 설명: 이 코드는 슬라이딩 윈도우 기법을 사용하여 문자열 내에서 중복되지 않는 가장 긴 구간을 찾는다. 왼쪽과 오른쪽 포인터를 이동시키며 조건에 맞게 윈도우를 확장하거나 축소한다.
Contributor
There was a problem hiding this comment.
🏷️ 알고리즘 패턴 분석
- 패턴: DFS
- 설명: 이 코드는 깊이 우선 탐색(DFS)을 이용하여 연결된 육지를 찾고 방문 표시를 통해 섬의 개수를 셉니다. 재귀 호출로 인접한 노드를 탐색하는 방식이 핵심입니다.
Contributor
There was a problem hiding this comment.
🏷️ 알고리즘 패턴 분석
- 패턴: Fast & Slow Pointers
- 설명: 이 코드는 포인터를 이용해 리스트를 역순으로 뒤집으며, prev와 cur 포인터를 이동시키는 방식으로 진행됩니다. 빠른 또는 느린 포인터 개념보다는 포인터 이동과 방향 전환이 핵심입니다.
Contributor
There was a problem hiding this comment.
🏷️ 알고리즘 패턴 분석
- 패턴: Hash Map / Hash Set
- 설명: 이 코드는 0이 있는 행과 열을 기록하기 위해 집합을 사용하여 빠른 검색을 수행합니다. 이를 통해 행과 열을 효율적으로 추적하고 수정하는 방식입니다.
Contributor
There was a problem hiding this comment.
🏷️ 알고리즘 패턴 분석
- 패턴: Combinatorics
- 설명: 이 코드는 조합 수학을 이용하여 경로의 수를 계산하므로 조합(Combinatorics) 패턴에 속합니다. 이동 경로의 선택을 수학적 조합으로 해결하는 방식입니다.
Contributor
📊 gcount85 님의 학습 현황이번 주 제출 문제
누적 학습 요약
문제 풀이 현황
🤖 이 댓글은 GitHub App을 통해 자동으로 작성되었습니다. 🔢 API 사용량 (gpt-4.1-nano)
|
sadie100
approved these changes
Apr 17, 2026
Contributor
sadie100
left a comment
There was a problem hiding this comment.
접근법과 복잡도를 함께 적어주셔서 이해가 쉬웠네요! 이번주도 고생하셨습니다 😊
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
답안 제출 문제
작성자 체크 리스트
In Review로 설정해주세요.검토자 체크 리스트
Important
본인 답안 제출 뿐만 아니라 다른 분 PR 하나 이상을 반드시 검토를 해주셔야 합니다!