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

fix : 레이싱 게임 추첨 당첨자 수 가져오기 및 NullPointerError 수정 (CC-175) #43

Merged
merged 2 commits into from
Aug 21, 2024

Conversation

putdata
Copy link
Collaborator

@putdata putdata commented Aug 21, 2024

📝 작업내용

  • 레이싱 게임 추첨 당첨자 수 가져오기
  • Selection이 NULL일때 추첨할 경우 NullPointerError 수정

💬 침고사항

📖 레퍼런스

@putdata putdata self-assigned this Aug 21, 2024
@putdata putdata added 익준 feat📌 기능 개발 labels Aug 21, 2024
}
// N명 중에서 한 명을 선택한 후, 그 사람을 가중치 / 전체 가중치 확률로 당첨자로 만든다. 이를 당첨인원수만큼 반복
int drawNumber = Math.min(315, participants.size()), ranking = 1; // TODO: 315 Global 변수화
RacingGameInfoResponseDto racingGameInfo = racingGameInfoService.getRacingGameInfo();
int drawNumber = Math.min(racingGameInfo.numberOfWinners(), participants.size()), ranking = 1;
Copy link
Collaborator

Choose a reason for hiding this comment

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

int drawNumber = ~  ;
int ranking = 1;

이렇게 분리해서 선언하면 어떤가요

@j2noo j2noo merged commit d0ef36c into develop Aug 21, 2024
1 check passed
j2noo pushed a commit that referenced this pull request Aug 21, 2024
* fix : 레이싱 게임 추첨 당첨자 수 가져오기 및 NullPointerError 수정 (CC-175)

* style : 변수 선언 컨벤션 (CC-175)
j2noo added a commit that referenced this pull request Aug 21, 2024
)

* test : 힌트 생성 api 테스트코드 작성(CC-173)

* test : 숨은캐스퍼찾기 사용자가 정답 입력하는 로직 테스트코드 작성(CC-173)

* test : 어드민이 숨캐찾 게임 기간을 설정하는 테스트코드(CC-173)

* test : 어드민이 숨캐찾 게임 날짜별 정답 정보를 설정하는 테스트코드(CC-173)

* test : 어드민이 레이싱게임 당첨자를 추첨하는 테스트코드(CC-173)

* style : 미사용 코드 제거 (CC-173)

* fix : 레이싱 게임 추첨 당첨자 수 가져오기 및 NullPointerError 수정 (CC-175) (#43)

* fix : 레이싱 게임 추첨 당첨자 수 가져오기 및 NullPointerError 수정 (CC-175)

* style : 변수 선언 컨벤션 (CC-175)

* fix : 서비스 순환 참조 수정 및 테스트코드 작성 (CC-173)

---------

Co-authored-by: ikjunoh <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feat📌 기능 개발 익준
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants