From 1cf5c822c8819204772ce9620367818b32ccbe2e Mon Sep 17 00:00:00 2001 From: SEAN Date: Thu, 16 Oct 2025 16:43:28 +0900 Subject: [PATCH] Initial commit --- .gitignore | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 16 ++++++++++++ 2 files changed, 87 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7be9cd2 --- /dev/null +++ b/.gitignore @@ -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/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..a0686d3 --- /dev/null +++ b/README.md @@ -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로 먼저 풀이를 진행한다.