Skip to content

Commit 55113b3

Browse files
committed
add Pipenv
1 parent 49a3877 commit 55113b3

File tree

5 files changed

+263
-5
lines changed

5 files changed

+263
-5
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
/.idea
22
/*.wav
33
/*.pdf
4+
/*.pack
5+
/*.zip
6+
/*.gif

Bugs.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
There are bugs in level_07、level_13、level_15、level_17、level_30

Pipfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[[source]]
2+
url = "https://pypi.org/simple"
3+
verify_ssl = true
4+
name = "pypi"
5+
6+
[packages]
7+
pillow = "*"
8+
requests = "*"
9+
networkx = "*"
10+
11+
[dev-packages]
12+
13+
[requires]
14+
python_version = "3.13"
15+
python_full_version = "3.13.0"

Pipfile.lock

Lines changed: 240 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README renamed to README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
# Python Challenge Solutions
22

3-
This repository contains the solutions to the quizzes on the Python Challenge website.
4-
It is intended for Python practice and fun.
5-
The website is [The Python Challenge](http://www.pythonchallenge.com), enjoy it~~
6-
7-
## Levels
3+
This repository includes solutions to the Python Challenge quizzes for practice and fun.
4+
Website: [The Python Challenge](http://www.pythonchallenge.com/) — enjoy!
85

96
### Level 0
107
2 to 38 = ?
@@ -106,3 +103,5 @@ Floats, image, formula.
106103
### Level 31
107104
Google the grandpa rock and find the differences between two Mandelbrot images.
108105
See [Mandelbrot Set](https://en.wikipedia.org/wiki/Mandelbrot_set)
106+
107+
(There are bugs in level_07、level_13、level_15、level_17、level_30 under python 3.13.)

0 commit comments

Comments
 (0)