-
Notifications
You must be signed in to change notification settings - Fork 0
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
웹 백엔드 유틸리티 라이브러리를 인수한다. - 8월 30일 #89
Comments
왜 |
관련 지식
문제 상황
해결 방안현재는 |
@Joyykim |
|
메서드 명과 관련하여 프론트 측에 변경 사항이 있어서 코멘트 남기겠습니당 :) Random 클래스의 메서드 지원 목록은 다음과 같습니다 !
|
클래스 변경사항
메소드 변경사항// Randoms.class
// 전
pick(final int startInclusive, final int endInclusive)
// 후
pickNumberInRange(final int startInclusive, final int endInclusive)
---
// 전
pick(final List<Integer> numbers)
// 후
pickNumberInList(final List<Integer> numbers)
---
// 전
notDuplicatedPicks(final int startInclusive, final int endInclusive, final int count)
// 후
pickUniqueNumbersInRange (final int startInclusive, final int endInclusive, final int count) // Console.class (기존 Scanners.class)
// 전
String nextLine()
// 후
String readLine()
nextInt(), next() 제거
- readLine()으로부터 파싱해서 사용하도록 유도. |
백엔드 라이브러리 - wooteco-utils 피드백 반영했습니다! |
블랙잭 미션에 도입 시 고려할 이슈들딜러가 무작위로 카드를 draw하는 기능을 라이브러리로 제공할 때 문제점
|
관련 이슈: #87 #88
The text was updated successfully, but these errors were encountered: