-
Notifications
You must be signed in to change notification settings - Fork 709
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
3단계 - 사다리(게임 실행), 2단계 - 사다리(생성) 수정 #2281
Commits on Nov 13, 2024
-
Configuration menu - View commit details
-
Copy full SHA for f4b11c4 - Browse repository at this point
Copy the full SHA f4b11c4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 14a8418 - Browse repository at this point
Copy the full SHA 14a8418View commit details -
Configuration menu - View commit details
-
Copy full SHA for d672425 - Browse repository at this point
Copy the full SHA d672425View commit details
Commits on Nov 14, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 5038429 - Browse repository at this point
Copy the full SHA 5038429View commit details -
Configuration menu - View commit details
-
Copy full SHA for f2dd14b - Browse repository at this point
Copy the full SHA f2dd14bView commit details
Commits on Nov 21, 2024
-
Configuration menu - View commit details
-
Copy full SHA for a9a2dd5 - Browse repository at this point
Copy the full SHA a9a2dd5View commit details
Commits on Nov 22, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ebc5785 - Browse repository at this point
Copy the full SHA ebc5785View commit details
Commits on Nov 24, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 5cdc1fb - Browse repository at this point
Copy the full SHA 5cdc1fbView commit details -
docs(ladder): modify README_LADDER_RUN.md
- X 생성 - 0보다 작으면 오류 - Y 생성 - 0보다 작으면 오류 feat(ladder): create X feat(ladder): create Y
Configuration menu - View commit details
-
Copy full SHA for 51c30a9 - Browse repository at this point
Copy the full SHA 51c30a9View commit details -
docs(ladder): modify README_LADDER_RUN.md
- X 이동 - X 우로 이동 - X 좌로 이동 - X 좌로 이동 실패 0보다 작음 feat(ladder): add X moveRight, moveLeft method test(ladder): add 오른쪽으로 이동한다, 왼쪽으로 이동한다, 왼쪽으로 이동 실패: 0미만
Configuration menu - View commit details
-
Copy full SHA for 89aa3d9 - Browse repository at this point
Copy the full SHA 89aa3d9View commit details -
docs(ladder): modify README_LADDER_RUN.md
- Y 이동 - Y 아래로 이동 feat(ladder): add Y moveDown test(ladder): add Y 아래로 이동한다
Configuration menu - View commit details
-
Copy full SHA for 72eec73 - Browse repository at this point
Copy the full SHA 72eec73View commit details
Commits on Nov 26, 2024
-
docs(ladder): modify README_LADDER_RUN.md
- Position 생성 - Position 이동 feat(ladder): add Position, constructor, move method test(ladder): add Position create, move test methods
Configuration menu - View commit details
-
Copy full SHA for e255ccc - Browse repository at this point
Copy the full SHA e255cccView commit details -
docs(ladder): modify README_LADDER_RUN.md
- PlayerName 이름이 all 일 수 없다 feat(ladder): rename Name -> PlayerName test(ladder): add PlayerName create_키워드_all_실패 test method
Configuration menu - View commit details
-
Copy full SHA for e589be3 - Browse repository at this point
Copy the full SHA e589be3View commit details -
docs(ladder): modify README_LADDER_RUN.md
- Player 생성 - Player 이름을 출력한다 feat(ladder): add Player constructor, name method test(ladder): add PlayerTest create, name feat(ladder): modify PlayerName name() -> value()
Configuration menu - View commit details
-
Copy full SHA for 2070c73 - Browse repository at this point
Copy the full SHA 2070c73View commit details -
docs(ladder): modify README_LADDER_RUN.md
- RewardName 생성 feat(ladder): add RewardName constructor, value test(ladder): add RewardName create, value
Configuration menu - View commit details
-
Copy full SHA for 9c44efa - Browse repository at this point
Copy the full SHA 9c44efaView commit details -
docs(ladder): modify README_LADDER_RUN.md
- Reward 생성 - Reward 이름을 출력한다 - Reward Position 동등 비교 - Player 포지션을 출력한다 feat(ladder): add Reward constructor, name, isEqualPosition test(ladder): add RewardTest create, name, isEqualPosition feat(ladder): add Player position test(ladder): add PlayerTest position
Configuration menu - View commit details
-
Copy full SHA for 2151c4d - Browse repository at this point
Copy the full SHA 2151c4dView commit details -
feat(ladder): modify Players field playerNames -> players
test(ladder): modify PlayersTest create feat(ladder): modify Player name return type String -> PlayerName test(ladder): modify PlayerTest name
Configuration menu - View commit details
-
Copy full SHA for b8a8671 - Browse repository at this point
Copy the full SHA b8a8671View commit details
Commits on Nov 27, 2024
-
docs(ladder): modify README_LADDER_RUN.md
- Rewards 생성 - Rewards 게임결과를 도출한다 - Rewards 게임결과들을 도출한다 - Result 생성 - Result 플레이어의 결과인지 출력 - Result RewardName 출력 - Result PlayerName 출력 - Results 생성 - Results 결과목록 출력 feat(ladder): add Result test(ladder): add ResultTest feat(ladder): add Results test(ladder): add ResultsTest feat(ladder): add Rewards test(ladder): add RewardsTest feat(ladder): add Players each method test(ladder): add PlayersTest each method feat(ladder): add Reward test(ladder): add RewardsTest
Configuration menu - View commit details
-
Copy full SHA for 1965135 - Browse repository at this point
Copy the full SHA 1965135View commit details -
docs(ladder): modify README_LADDER_RUN.md
- modify Reward position x 동등 비교 - modify Reward field Position -> X - add Player 가로 일치 여부를 출력한다 feat(ladder): modify Reward constructor, field Position -> X test(ladder): modify RewardTest feat(ladder): modify Rewards constructor test(ladder): modify RewardsTest feat(ladder): add Position xEquals test(ladder): add PositionTest xEquals
Configuration menu - View commit details
-
Copy full SHA for 94c6c98 - Browse repository at this point
Copy the full SHA 94c6c98View commit details
Commits on Nov 28, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 8b44b4e - Browse repository at this point
Copy the full SHA 8b44b4eView commit details
Commits on Nov 30, 2024
-
docs(ladder): modify README_LADDER_RUN.md
- Players 플레이어 모두 한칸 아래 이동 - Point 이동 feat(ladder): add Players moveLine test(ladder): add PlayersTest moveLine feat(ladder): add Point move test(ladder): add PointTest move
Configuration menu - View commit details
-
Copy full SHA for 82f8055 - Browse repository at this point
Copy the full SHA 82f8055View commit details -
docs(ladder): modify README_LADDER_RUN.md
- Line 플레이어 모두 한칸 아래 이동 feat(ladder): remove Players moveLine test(ladder): remove PlayersTest moveLine feat(ladder): add Line move test(ladder): add LineTest move feat(ladder): add Vertical test(ladder): add VerticalTest feat(ladder): add Players vertical test(ladder): add PlayersTest vertical
Configuration menu - View commit details
-
Copy full SHA for 2ec82e6 - Browse repository at this point
Copy the full SHA 2ec82e6View commit details -
docs(ladder): modify README_LADDER_RUN.md
- Lines 플레이어 모두 마지막까지 이동 feat(ladder): remove Players moveLine feat(ladder): add Lines move test(ladder): add LinesTest move
Configuration menu - View commit details
-
Copy full SHA for 2284a1e - Browse repository at this point
Copy the full SHA 2284a1eView commit details -
docs(ladder): modify README_LADDER_RUN.md
- PlayerName 생성 - RewardName 생성 feat(ladder): add RewardName test(ladder): add RewardNameTest
Configuration menu - View commit details
-
Copy full SHA for 3ecc210 - Browse repository at this point
Copy the full SHA 3ecc210View commit details -
docs(ladder): modify README_LADDER_RUN.md
- Ladder 결과들을 생성한다 - Rewards 이름을 출력한다 - Results 생성 - Results 게임결과를 도출한다 - Results 게임결과들을 도출한다 feat(ladder): add Ladder results test(ladder): add LadderTest results feat(ladder): add Rewards names test(ladder): add RewardsTest names feat(ladder): add Results test(ladder): add ResultsTest
Configuration menu - View commit details
-
Copy full SHA for 2772846 - Browse repository at this point
Copy the full SHA 2772846View commit details -
feat(ladder): modify unused imports,
- modify unused Exceptions test(ladder): modify omitted @DisplayName
Configuration menu - View commit details
-
Copy full SHA for 4b263f4 - Browse repository at this point
Copy the full SHA 4b263f4View commit details -
docs(ladder): modify README_LADDER_RUN.md
- Rewards 생성 실패 - Players 생성 실패 - Vertical 생성 실패 - InputView 실행 결과를 입력받는다.(실행 결과를 입력하세요. (결과는 쉼표(,)로 구분하세요)) - InputView 결과를 볼 플레이어 이름을 입력받는다.(결과를 보고 싶은 사람은?) - InputView 결과를 볼 플레이어 전체를(all) 입력받는다.(결과를 보고 싶은 사람은?) - ResultView 사다리결과에 Rewards 를 붙여 출력한다 - ResultView 실행 결과를 출력한다(실행 결과) - ResultView 실행 결과들을 출력한다(실행 결과) feat(ladder): add InputView inputNamesToRewards, inputResultPlayer feat(ladder): add ResultView renderResults - modify ResultView renderLadderAndRewards, toLadder feat(ladder): modify LadderController run feat(ladder): modify Players constructor test(ladder): modify PlayersTest create_실패_플레이어_목록이_1명_미만 feat(ladder): modify Rewards constructor test(ladder): modify RewardsTest create_실패_rewardNames_갯수와_playersCount_갯수_불일치 feat(ladder): modify Vertical constructor test(ladder): modify VerticalTest create_실패_0보다_작을_수_없다
Configuration menu - View commit details
-
Copy full SHA for 9f5dd51 - Browse repository at this point
Copy the full SHA 9f5dd51View commit details