-
Notifications
You must be signed in to change notification settings - Fork 4
[1주차] 이혜원 #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
icegosimperson
merged 13 commits into
GreatAlgorithm-Study:main
from
icegosimperson:main
Sep 14, 2024
Merged
[1주차] 이혜원 #3
icegosimperson
merged 13 commits into
GreatAlgorithm-Study:main
from
icegosimperson:main
Sep 14, 2024
Conversation
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
git push origin main
KodaHye
KodaHye
reviewed
Sep 14, 2024
.idea/.gitignore
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
혹시 .idea 폴더 올라온거 삭제해주실 수 있나요!
머지하면 충돌날 것 같습니당!
https://gmlwjd9405.github.io/2018/05/17/git-delete-incorrect-files.html
위에 블로그 참고했는데, 아래 명령어 입력하면 되는 것 같습니당!
git rm --cached -r .idea/
git commit -m "delete: idea 폴더 삭제"
git push origin main
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.
Uh oh!
There was an error while loading. Please reload this page.
📗 월요일
[CT] 자율주행_자동차
🤔 시간복잡도 고려사항
💡 풀이 아이디어
[CT] 불안한_무빙워크
🤔 시간복잡도 고려사항
💡 풀이 아이디어
📗 화요일
[BOJ] 2531_회전초밥
🤔 시간복잡도 고려사항
💡 풀이 아이디어
[SQL] 조건에 맞는 사원 정보 조회하기
💡 풀이 아이디어
📗 수요일
[BOJ] 3020_개똥벌레
🤔 시간복잡도 고려사항
💡 풀이 아이디어
📗 목요일
[PG] 132265 롤케이크 자르기
🤔 시간복잡도 고려사항
💡 풀이 아이디어
[PG] 12927 야근 지수
🤔 시간복잡도 고려사항
💡 풀이 아이디어
[SQL] 평균 일일 대여 요금 구하기
💡 풀이 아이디어
📗 금요일
[PG] 49994_방문 길이
🤔 시간복잡도 고려사항
💡 풀이 아이디어
[PG] 154539_뒤에 있는 큰 수 찾기
🤔 시간복잡도 고려사항
💡 풀이 아이디어
스택과 스택 인덱스를 배열로 사용한 이유: 오른쪽에->왼쪽 역 탐색이 효율적을 이라서 그렇다는데 다른 분들의 의견이 궁금합니다
스택이 비어있지않고, 현재 수열 값이 top에 해당하는 수열보다 클 때까지 pop
정답 배열에 오큰수를 저장 -> 크지 않을 경우 push
스택이 빌 때까지 정답 배열에 -1 저장
백준 17298_오큰수 문제와 동일 (https://www.acmicpc.net/problem/17298)