Initial commit

This commit is contained in:
SEAN 2025-10-16 16:43:28 +09:00
commit 1cf5c822c8
2 changed files with 87 additions and 0 deletions

71
.gitignore vendored Normal file
View File

@ -0,0 +1,71 @@
# CodingTest
# MAC TRASH
._*
# macOS
.DS_Store
# Build generated
build/
DerivedData/
# Xcode
*.xcodeproj
xcuserdata/
*.xcscheme
*.moved-aside
*.xcuserstate
*.xcworkspace
# Swift Package Manager
.build/
Packages/
*.resolved
# Cocoapods
Pods/
# Carthage
Carthage/
# User-specific settings
*.user
# Playgrounds
timeline.xctimeline
playground.xcworkspace
# Virtual Environments
# 가상 환경 폴더는 개인 PC의 패키지들이 설치되는 곳이므로 절대 공유하면 안 됩니다.
.venv/
venv/
env/
virtualenv/
# IDE and Editor Folders
# PyCharm, VS Code 등의 개인 설정 폴더입니다.
.idea/
.vscode/
# Python cache and bytecode
# 파이썬이 실행 속도를 높이기 위해 자동으로 생성하는 파일들입니다.
__pycache__/
*.pyc
*.pyo
*.pyd
# Build and distribution artifacts
# 패키지 빌드 시 생성되는 결과물 폴더입니다.
build/
dist/
*.egg-info/
*.egg
# Testing
# 테스트 도구가 생성하는 캐시 및 리포트 파일입니다.
.pytest_cache/
.coverage
htmlcov/
.tox/

16
README.md Normal file
View File

@ -0,0 +1,16 @@
# CodingTest
[프로그래머스 코딩테스트 고득점 Kit](https://school.programmers.co.kr/learn/challenges?tab=algorithm_practice_kit).
1. 해시 (5문항)
2. 스택 / 큐 (6문항)
3. 힙 (3문항)
4. 정렬 (3문항)
5. 완전탐색 (7문항)
6. Greeedy (6문항)
7. DP (5문항)
8. DFS / BFS (7문항)
9. B-Search (2문항)
10. Graph (3문항)
- 각각 Swift와 Python으로 풀어볼 것이며 Swift로 먼저 풀이를 진행한다.