-
-
Notifications
You must be signed in to change notification settings - Fork 362
260729 bot test current #2782
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
base: main
Are you sure you want to change the base?
260729 bot test current #2782
Changes from all commits
8d1c6cf
33eb07c
8e69a12
3956809
7c28fd5
0ea4f79
ed30513
35f0dee
bb93b05
7afdc00
e183a61
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| def a(): | ||
| return "user-a" |
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 1
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 2
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 3
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🏷️ 알고리즘 패턴 분석
📊 시간/공간 복잡도 분석
풀이 1:
|
| 복잡도 | |
|---|---|
| Time | O(n^2) |
| Space | O(1) |
피드백: 배열 정렬과 두 포인터를 활용하여 세 수의 합이 0인 경우를 찾는 일반적 방법입니다.
개선 제안: 현재 구현은 함수 몸체가 없으므로 동작 구현이 필요합니다.
풀이 2: b — Time: O(n^2) / Space: O(1)
| 복잡도 | |
|---|---|
| Time | O(n^2) |
| Space | O(1) |
피드백: 배열 정렬과 두 포인터를 활용하여 세 수의 합이 0인 경우를 찾는 일반적 방법입니다.
개선 제안: 현재 구현은 함수 몸체가 없으므로 동작 구현이 필요합니다.
💡 풀이에 시간/공간 복잡도를 주석으로 남겨보세요!
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| def b(): | ||
| return "user-b-3" |
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.
🏷️ 알고리즘 패턴 분석
📊 시간/공간 복잡도 분석
풀이 1:
a— Time: O(n^2) / Space: O(1)피드백: 배열 정렬과 두 포인터를 활용하여 세 수의 합이 0인 경우를 찾는 일반적 방법입니다.
개선 제안: 현재 구현은 함수 몸체가 없으므로 동작 구현이 필요합니다.
풀이 2:
b— Time: O(n^2) / Space: O(1)피드백: 배열 정렬과 두 포인터를 활용하여 세 수의 합이 0인 경우를 찾는 일반적 방법입니다.
개선 제안: 현재 구현은 함수 몸체가 없으므로 동작 구현이 필요합니다.