Skip to content

Commit 82882e8

Browse files
committed
refactor: update python project
1 parent 4b18509 commit 82882e8

File tree

13 files changed

+671
-1
lines changed

13 files changed

+671
-1
lines changed

‎coding-test-python-practice/.gitignore‎

Lines changed: 654 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[tool.poetry]
2+
name = "coding-test-python-practice"
3+
version = "0.1.0"
4+
description = "Coding test practice for Programmers problems"
5+
authors = ["Jinseong Ha"]
6+
readme = "README.md"
7+
8+
[tool.poetry.dependencies]
9+
python = "^3.11"
10+
pytest = "^7.4.2"
11+
pytest-benchmark = "^4.0.0"
12+
13+
14+
[build-system]
15+
requires = ["poetry-core"]
16+
build-backend = "poetry.core.masonry.api"

requirements.txt renamed to coding-test-python-practice/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest>=7.2.0
1+
pytest>=7.4.2
22
pytest-benchmark>=4.0.0
File renamed without changes.
File renamed without changes.

programmers/problem1844/shortest_distance_game_map.py renamed to coding-test-python-practice/src/problem1844/shortest_distance_game_map.py

File renamed without changes.

programmers/problem1844/test_shortest_distance_game_map.py renamed to coding-test-python-practice/src/problem1844/test_shortest_distance_game_map.py

File renamed without changes.
File renamed without changes.

programmers/problem42578/cloth_combination.py renamed to coding-test-python-practice/src/problem42578/cloth_combination.py

File renamed without changes.

programmers/problem42578/test_cloth_combination.py renamed to coding-test-python-practice/src/problem42578/test_cloth_combination.py

File renamed without changes.

0 commit comments

Comments
(0)