├── .gitmodules └── README.md /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "java-racingcar"] 2 | path = java-racingcar 3 | url = https://github.com/Integerous/java-racingcar.git 4 | branch = Integerous 5 | [submodule "java-lotto"] 6 | path = java-lotto 7 | url = https://github.com/Integerous/java-lotto.git 8 | branch = Integerous 9 | [submodule "java-ladder"] 10 | path = java-ladder 11 | url = https://github.com/Integerous/java-ladder.git 12 | branch = Integerous 13 | [submodule "java-bowling"] 14 | path = java-bowling 15 | url = https://github.com/Integerous/java-bowling.git 16 | branch = Integerous 17 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TDD, Refactoring, Clean Code 5기 과제 모음 2 | >[박재성님의 TDD 강의](https://edu.nextstep.camp/) (2019.6.13 ~ 2019.7.31)를 수강하며 작성한 코드와 리뷰가 담긴 저장소 3 | 4 | ## 4주차 - 볼링 점수판 만들기 5 | Step1 : 볼링 점수판 (그리기) - [코드 리뷰](https://github.com/next-step/java-bowling/pull/37) 6 | Step2 : 볼링 점수판 (점수 계산) - [코드 리뷰](https://github.com/next-step/java-bowling/pull/43) 7 | Step3 : 볼링 점수판 (리팩토링) - [코드 리뷰](https://github.com/next-step/java-bowling/pull/44) 8 | Step4 : 볼링 점수판 (n명) - [코드 리뷰](https://github.com/next-step/java-bowling/pull/46) 9 | 10 | ## 3주차 - 사다리 게임 만들기 11 | Step1 : Lambda, Stream, Optional 실습 - [코드 리뷰](https://github.com/next-step/java-ladder/pull/149) 12 | Step2 : 사다리 (생성) - [코드 리뷰](https://github.com/next-step/java-ladder/pull/198) 13 | Step3 : 사다리 (게임 실행) - [코드 리뷰](https://github.com/next-step/java-ladder/pull/207) 14 | Step4 : 사다리 (리팩토링) - [코드 리뷰](https://github.com/next-step/java-ladder/pull/221) 15 | 16 | ## 2주차 - 로또 게임 만들기 17 | Step1 : 문자열 덧셈 계산기 - [코드 리뷰](https://github.com/next-step/java-lotto/pull/196) 18 | Step2 : 로또 (자동) - [코드 리뷰](https://github.com/next-step/java-lotto/pull/226) 19 | Step3 : 로또 (2등) - [코드 리뷰](https://github.com/next-step/java-lotto/pull/249) 20 | Step4 : 로또 (수동) - [코드 리뷰](https://github.com/next-step/java-lotto/pull/262) 21 | 22 | ## 1주차 - 자동차 경주 게임 만들기 23 | Step1 : 문자열 계산기 - [코드 리뷰](https://github.com/next-step/java-racingcar/pull/284) 24 | Step2 : 자동차 경주 - [코드 리뷰](https://github.com/next-step/java-racingcar/pull/319) 25 | Step3 : 자동차 경주 (우승자) - [코드 리뷰](https://github.com/next-step/java-racingcar/pull/337) 26 | Step4 : 자동차 경주 (리팩토링) - [코드 리뷰](https://github.com/next-step/java-racingcar/pull/362) 27 | 28 | --------------------------------------------------------------------------------