https://github.com/etff/fifteen-puzzle
https://github.com/etff/fifteen-puzzle
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/etff/fifteen-puzzle
- Owner: etff
- Created: 2024-04-13T18:13:23.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-05T02:31:35.000Z (over 1 year ago)
- Last Synced: 2025-09-09T03:44:41.071Z (9 months ago)
- Language: Java
- Size: 139 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 숫자 퍼즐 만들기
## 요구사항
- 시작시 자동 셔플
- 완성했을 경우 축하 메시지 출력
- q를 누르면 포기하고 게임을 종료
- 이동키로 wasd(wow 스타일) 또는 hjkl(vim 스타일) 사용
## 프로그램 예시
```text
15 퍼즐입니다.
1 2 3 4
5 6 7 8
9 10 11 12
13 14 15
명령(h, j, k, l, q)
h
1 2 3 4
5 6 7 8
9 10 11 12
13 14 15
1번만에 완성하셨습니다!
Thank You for Playing!
```