-
Notifications
You must be signed in to change notification settings - Fork 2
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
1.2.1 #301
Conversation
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
#289 [feat] 최적의 회의 시간 도출 클래스 틀 구현
given에서 List<TimeBlockDto>를 표현하기 위해서 수십줄이 필요했습니다. 이를 간소화하기 위해 테스트를 위한 코드인 List<TimeBlockDto>를 구현했습니다. 요일, 시작시간, 종료시간, 가중치, 유저 수를 넣으면 해당 값대로 List<TimeBlockDto>를 반환합니다.
각 요일들을 구분할 수 있는지 확인하는 테스트 코드
투 포인터 알고리즘을 활용했습니다. startIdx와 endIdx를 생성하여 연속된 값이면 continue를 했습니다. date가 다르거나 연속된 값이 아니라면 startIdx부터 endIdx까지 차를 구하고, 회의 진행 시간 보다 큰지 비교한다. 크다면 해당 값을 BestMeetingVo로 만들어 추가한다. 반복문이 끝난 후, 마지막 연속된 값이 회의 진행 시간보다 큰지 구분하여 추가한다
총 회의 시간의 가중치의 합을 구하는 로직, 회의 진행 시간을 만족하는지 구분하는 로직 추출
time block이 길수록 가중치가 더 커지기 때문에 평균값으로 수정
코드 중복 제거를 위해 ParameterizedTest 도입 displayname 명 수정
사용자가 16:00 ~ 16:30분을 체크한 경우 TIME_SLOT_16_00만 들어오는 것을 고려하지 못한 것에 대한 수정입니다.
#291 [feat] ContinuousMeetingTimeStrategy 구현체 코드 구현
회의 진행 시간 별 긴 블록을 구분하는 로직을 계산하기 위해 매개변수에 duration을 추가했습니다
각 회의 진행 시간마다 최적의 회의 시간을 1개 반환하는 테스트 케이스 최적의 회의 시간을 2개 반환하는 테스트 케이스
sohyundoh
approved these changes
Aug 5, 2024
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.
굿. 고생하셨습니다!
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.
변경된 회의 시간 추천 로직 반영