-
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
[Jay-Mo-99] Week 6 #898
Open
Jay-Mo-99
wants to merge
7
commits into
DaleStudy:main
Choose a base branch
from
Jay-Mo-99:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+218
−0
Open
[Jay-Mo-99] Week 6 #898
Changes from 6 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
d9f9e2b
Solve: valid-parentheses
Jay-Mo-99 75c1b83
Check the git status
Jay-Mo-99 e7f6aea
Change the commment
Jay-Mo-99 ffd6b99
Merge branch 'DaleStudy:main' into main
Jay-Mo-99 639f73f
Solve: Container with most water
Jay-Mo-99 3af0cab
Merge branch 'DaleStudy:main' into main
Jay-Mo-99 727931f
Analyze: Design add and search words data structure
Jay-Mo-99 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
#해석 | ||
#s는 start index, e는 ending index로 할당한다. | ||
#area 에 (e-s)*min(height[e], height[s]) 로 면적의 넓이를 구한다. | ||
#만약 height[s]가 height[e] 보다 작다면, 현 area보다 더 큰 결괏값을 위해 변화를 준다. | ||
# (e-s)에서 e를 줄어들면 필연적으로 area 값이 기존보다 적어진다. 따라서 s에 1을 더해 인덱스를 오른쪽으로 이동시켜 height[s] 에 변화를 준다. | ||
#그 외의 상황에는 height[e]를 변화시키기 위해 e에 1를 빼 왼쪽 인덱스로 이동시킨다. | ||
#해당 루프는 s가 e보다 작을때 작용된다. 만약 s의 증가와 e의 감소로 두 변수가 마주치면 종료한 후 max_area를 return시킨다. | ||
|
||
|
||
|
||
#Big O | ||
#- N: height의 element 갯수 | ||
|
||
#Time Complexity: O(N) | ||
#- while : s와 e가 만날때까지 최대 N번 반복된다. 각 반복에서의 연산들은 O(1)에 해당된다. -> O(N) | ||
|
||
|
||
#Space Complexity: O(1) | ||
#- s,e,max_area: 변수는 상수로 작용된다 -> O(1) | ||
#### | ||
# | ||
# | ||
class Solution(object): | ||
def maxArea(self, height): | ||
""" | ||
:type height: List[int] | ||
:rtype: int | ||
""" | ||
max_area = 0 #Saving for answer | ||
s,e=0,len(height)-1 #Assign the first index and last index | ||
while s<e: | ||
area = (e-s) * min(height[s],height[e]) #Current area using e,s | ||
max_area = max(area, max_area) #Re-assing the max_area comparing with area | ||
if height[s]< height[e]: | ||
s+=1 | ||
else: | ||
e -=1 | ||
return max_area | ||
|
||
|
This file contains 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
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,57 @@ | ||||||||||||||||||||||
#해석 | ||||||||||||||||||||||
#매개변수 string s의 각 character인 c 가 open bracket이면 temp 리스트에 추가한다. | ||||||||||||||||||||||
#c가 close bracket이면 temp의 마지막 element와 짝이 맞는지 검사한다. 짝이 아니거나 temp에 아무 요소도 없으면 return false | ||||||||||||||||||||||
#검사 이후 temp에 잔여 요소가 남아있으면 짝이 맞지 않았다는 뜻이니 return false, 아닐 경우 return true | ||||||||||||||||||||||
# | ||||||||||||||||||||||
|
||||||||||||||||||||||
#Big O | ||||||||||||||||||||||
#- N: 문자열 s의 길이 | ||||||||||||||||||||||
|
||||||||||||||||||||||
#Time Complexity: O(N) = O(N) + O(1) | ||||||||||||||||||||||
#- for c in s : string s의 character의 수 만큼 진행된다. -> O(N) | ||||||||||||||||||||||
#-temp.append(c), temp.pop() : 리스트 연산은 상수 취급 -> O(1) | ||||||||||||||||||||||
|
||||||||||||||||||||||
#Space Complexity: O(N) | ||||||||||||||||||||||
#- temp : list temp은 최대 string s의 character수 만큼 요소를 저장할 가능성이 있다. | ||||||||||||||||||||||
|
||||||||||||||||||||||
|
||||||||||||||||||||||
class Solution(object): | ||||||||||||||||||||||
def isValid(self, s): | ||||||||||||||||||||||
""" | ||||||||||||||||||||||
:type s: str | ||||||||||||||||||||||
:rtype: bool | ||||||||||||||||||||||
""" | ||||||||||||||||||||||
temp = [] | ||||||||||||||||||||||
for c in s: | ||||||||||||||||||||||
#If c is Open bracket, append to the list | ||||||||||||||||||||||
if (c == "(") or (c=="{") or (c=="["): | ||||||||||||||||||||||
temp.append(c) | ||||||||||||||||||||||
#If C is Close bracket, Check the close bracket pairs with last elememt of temp list | ||||||||||||||||||||||
else: | ||||||||||||||||||||||
#There's no element in the tmep, Return false | ||||||||||||||||||||||
if(len(temp)==0): | ||||||||||||||||||||||
return False | ||||||||||||||||||||||
|
||||||||||||||||||||||
if(c==")") and (temp.pop()=="("): | ||||||||||||||||||||||
continue | ||||||||||||||||||||||
if(c=="}") and (temp.pop()=="{"): | ||||||||||||||||||||||
continue | ||||||||||||||||||||||
if(c=="]") and (temp.pop()=="["): | ||||||||||||||||||||||
continue | ||||||||||||||||||||||
else: | ||||||||||||||||||||||
return False | ||||||||||||||||||||||
|
||||||||||||||||||||||
#After loop, Check temp is empty or not. | ||||||||||||||||||||||
#If all c of s is pairs each other, the temp list is empty. | ||||||||||||||||||||||
if (len(temp) == 0) : | ||||||||||||||||||||||
return True | ||||||||||||||||||||||
else: | ||||||||||||||||||||||
return False | ||||||||||||||||||||||
Comment on lines
+46
to
+49
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. 안녕하세요, @Jay-Mo-99 님,
Suggested change
또는
Suggested change
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. return에 바로 조건문을 입력하면 코드 수를 줄일수 있군요. if~else 구조 대신에 자주 사용해보도록 해봐야 겠어요. 피드백 감사합니다. |
||||||||||||||||||||||
|
||||||||||||||||||||||
|
||||||||||||||||||||||
|
||||||||||||||||||||||
|
||||||||||||||||||||||
|
||||||||||||||||||||||
|
||||||||||||||||||||||
|
||||||||||||||||||||||
|
Oops, something went wrong.
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.
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.
👍 이번 한주도 수고하셨습니다..!