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.
🎈boj 11037 - 중복 없는 수
🗨 해결방법 :
주어진 수의 다음 수부터 완전 탐색으로 중복된 수가 있는지 확인하였습니다. boolean[]의 숫자 배열에 수의 각 자릿수의 인덱스를 채워넣으며 중복된 숫자가 있다면 false를 반환합니다.
📝메모 :
완탐이 아닌 다른 방법을 생각해볼것
✔코드 :
🎈boj 14226 - 이모티콘
🗨 해결방법 :
3가지 연산을 BFS 탐색을 이용하여 구현하였습니다. 방문 확인 배열로 2차원 boolean 배열을 선언하였고, 각 차원은 [현재 모니터에 있는 이모티콘의 수][버퍼에 들어있는 이모티콘의 수]을 나타냅니다.
📝메모 :
✔코드 :
🎈boj 23829 - 인문예술탐사주간
🗨 해결방법 :
구간합을 만들고 이분 탐색으로 구간을 나눌 인덱스를 구하여 인덱스보다 큰 구간과 작은 구간을 나누어 더하였습니다.
📝메모 :
Lower Bound와 Upper Bound를 정확하게 이해할 것
✔코드 :
🎈boj 25795 - 예쁜 초콜릿과 숫자놀이
🗨 해결방법 :
화이트 초콜릿부터 시작하여 화이트 초콜릿이 나올 경우와 다크 초콜릿이 나올 경우를 DFS로 탐색하였습니다. 다크 초콜릿이 나올 수 있는 경우는 화이트 초콜릿의 개수보다 적을 경우 나올 수 있습니다.
📝메모 :
✔코드 :