Closed
Conversation
TaeYoon17
pushed a commit
to TaeYoon17/java-baseball-precourse
that referenced
this pull request
Jan 28, 2026
게임의 핵심 로직과 인터페이스 제약 사항을 구체화하고 구현 순서를 정비 [적용 사항] 1. 핵심 로직 상세 정의 - 정답 생성, 숫자 비교(스트라이크/볼/낫싱), 승리 조건 명시 2. 인터페이스 제약 사항 추가 - 입력값 범위(1~9, 3자리, 중복 없음) 및 예외 처리(IllegalArgumentException) 기준 확립 3. 커밋 계획 세분화 - 도메인, 뷰, 컨트롤러 계층으로 분리하여 TDD 흐름에 맞게 작업 순서 조정 [적용 이유] 개발 요구 사항을 명확히 하고 체계적인 구현 가이드를 제공하기 위함이다. Resolves: next-step#2
ianleeee
added a commit
to ianleeee/java-baseball-precourse
that referenced
this pull request
Jan 30, 2026
add Guess domain to parse and validate 3-digit input and retry until valid input is provided Refs: README feature next-step#2
This file contains hidden or 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
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.
작성 밑바탕 코드
README.md 에 작성된 항목에 따라
구현기능
테스트기능
을 나눠 작업을 진행했으며, 입력받은 다양한 케이스에 대한 결과 처리 작업을 테스트를 통해 확인했습니다.