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

[Wordle] 호우팀(우유) 미션 제출합니다. #19

Open
wants to merge 28 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
300705c
test : 단어 테스트
cousim46 Jun 16, 2024
0e29dbc
test : 게임 실행
cousim46 Jun 16, 2024
b034aab
test : 스테이지 테스트
cousim46 Jun 16, 2024
31846ce
test : 스텝 테스트
cousim46 Jun 16, 2024
dcad2b3
test : 단어 테스트
cousim46 Jun 16, 2024
8c77714
fix : jdk 버전 수정
cousim46 Jun 16, 2024
f0c3b84
fix : indent 수정
cousim46 Jun 16, 2024
cc8fa0b
feat : 실행 파일 추가
cousim46 Jun 16, 2024
41e9aae
feat : 사전 역할 생성
cousim46 Jun 16, 2024
ef38d78
feat : 게임 역할 생성
cousim46 Jun 16, 2024
2265953
feat : 입력 역할 생성
cousim46 Jun 16, 2024
f4e7ba7
feat : 출력 역할 생성
cousim46 Jun 16, 2024
7702247
feat : 스테이지 역할 생성
cousim46 Jun 16, 2024
7893ae7
feat : 단계 역할 생성
cousim46 Jun 16, 2024
37e4539
feat : 단어 역할 생성
cousim46 Jun 16, 2024
9186d5e
fix: Word 패키지 변경 및 require로 validation
woo-yu Jun 16, 2024
73296da
fix: Step 패키지 변경 및 answer, word 포함
woo-yu Jun 16, 2024
4c43baa
fix: Stage 패키지 변경 및 state 연산을 초기화시 진행
woo-yu Jun 16, 2024
7980f69
fix: Game, Application 수정 및 view/domain 레이어 추가
woo-yu Jun 16, 2024
d24df44
fix: fail시 X/6 화면 노출
woo-yu Jun 22, 2024
1699aea
fix: dictionary 분리
woo-yu Jun 30, 2024
397a5c7
fix: error 출력도 ouput으로 이동
woo-yu Jun 30, 2024
54bcaf4
fix: Word의 validation이 constructor를 활용
woo-yu Jun 30, 2024
977b25e
fix: ! 사용 -> not()으로 변경
woo-yu Jun 30, 2024
8a2da06
fix: EOF
woo-yu Jun 30, 2024
2181344
fix: Dictionary 잘못된 테스트 수정
woo-yu Jun 30, 2024
925ea1f
test: test assertAll로 수정
woo-yu Jun 30, 2024
0595694
fix: c -> letter로 수정
woo-yu Jun 30, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat : 실행 파일 추가
cousim46 committed Jun 16, 2024
commit cc8fa0b90358ba5a5985fbab0dcfef3e90356b09
5 changes: 5 additions & 0 deletions src/main/kotlin/Computer.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import java.time.LocalDate

fun main(args: Array<String>) {
Game.start(LocalDate.now())
}