-
Notifications
You must be signed in to change notification settings - Fork 126
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
[suwi] Week 07 #939
[suwi] Week 07 #939
Conversation
SC : O(N) | ||
문자열 길이와 set의 크기가 비례 |
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.
딕셔너리 자료형도 사용하실 수 있습니다 :)
생각이 안 나시거나 바쁘시다면 아래 링크를 통해서 바로 확인해보세요
https://gist.github.com/obzva/5db9d02a3e6c97f45589dab34f0f8603
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.
재밌는 풀이네요! 아마 혼자서 생각해내진 못했을거 같아요 덕분에 github gist의 존재도 알게 됐습니다!
풀이 : | ||
dfs를 이용해서 인자로 들어온 row, col부터 matrix를 순회하며 0을 찾는다 | ||
0 찾으면 column 1 증가시켜 dfs호출 후 해당 행,열을 0으로 설정 후 return | ||
모든 matrix 순회하면 return |
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.
제 생각을 말씀드리자면,
- 우선 dfs를 이용할 문제가 아닌 것으로 판단됩니다
- 설령 dfs를 사용한다고 하더라도 suwi님 풀이에 불필요한 부분이 많아 보입니다
다른 분들 풀이를 한 번 봐보시는 걸 추천드립니다
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.
리뷰 감사드립니다!
일단 dfs 풀이는 재귀함수의 콜스택 메모리를 고려하지 못한 상황에서 공간복잡도를 O(1)로 만드려고 생각한 풀이였습니다
콜스택 때문에 그렇지 않다는 것을 알게됐지만 개인적으로 풀이 방법이 재밌어서 그대로 제출했어요!
dfs 외의 풀이는 다른 분들 참고해서 학습하겠습니다! dfs로 푼 분은 없는거 같네요...🥲
또 혹시나 dfs풀이에서 개선할 부분이 있다면 제안해주시면 감사하겠습니다
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.
한 주 수고하셨습니다 :)
코멘트를 남겨놓았으니 병합 전에 확인 바랍니다
코멘트 모두 확인했습니다 좋은 리뷰 감사드립니다 |
답안 제출 문제
체크 리스트
In Review
로 설정해주세요.