Skip to content
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

[jj7779607] Week6 #903

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

[jj7779607] Week6 #903

wants to merge 3 commits into from

Conversation

limlimjo
Copy link
Contributor

@limlimjo limlimjo commented Jan 14, 2025

답안 제출 문제

체크 리스트

  • 우측 메뉴에서 PR을 Projects에 추가해주세요.
  • Projects의 오른쪽 버튼(▼)을 눌러 확장한 뒤, Week를 현재 주차로 설정해주세요.
  • 바로 앞에 PR을 열어주신 분을 코드 검토자로 지정해주세요.
  • 문제를 모두 푸시면 프로젝트에서 StatusIn Review로 설정해주세요.
  • 코드 검토자 1분 이상으로부터 승인을 받으셨다면 PR을 병합해주세요.

@limlimjo limlimjo requested a review from ekgns33 January 14, 2025 09:54
@limlimjo limlimjo requested a review from a team as a code owner January 14, 2025 09:54
@github-actions github-actions bot added the js label Jan 14, 2025
if (brackets[i]) {
stack.push(brackets[i]);
// 닫는 괄호일 경우
} else if (i !== stack.pop()) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

js에서는 스택이 비었을 때, stack.pop() 사용의 리턴 결과가 어떻게 되나요??

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

undefined를 반환하게 됩니다. 스택이 비었을 때를 고려하지 못했는데 확인 감사합니다!

* @return {number}
*/
var maxArea = function (height) {
// Two Pointer를 이용해서 문제를 접근해야할 것 같은데 두 포인터 중에 어떤 거를 이동시켜야하는지 이 부분이 고민이 됨.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

투포인터로 접근하는 것까지 생각해내셨군요! 👍 어떤 포인터를 이동시킬 지를 고민할때는 몇가지 예시를 직접 만들어보시고 직접 눈으로 확인하는게 도움이 되는 경우가 많습니다 :)

Copy link
Contributor

@TonyKim9401 TonyKim9401 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

6주차 문제 풀이 고생 많으셨습니다!
7주차도 파이팅입니다!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Status: Solving
Development

Successfully merging this pull request may close these issues.

3 participants