Skip to content

Commit 0876463

Browse files
committed
SQL: Advanced Select 601. Human Traffic of Stadium
1 parent 49c130d commit 0876463

6 files changed

Lines changed: 919 additions & 14 deletions

File tree

.gitignore

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
# ========================================
2+
# プロジェクト用 .gitignore
3+
# ========================================
4+
5+
# バイトコード / キャッシュ
6+
__pycache__/
7+
*.py[cod]
8+
*$py.class
9+
*.pyc
10+
*.pyo
11+
*.pyd
12+
13+
# 仮想環境
14+
.env
15+
.venv
16+
.venv3.10.13
17+
env/
18+
venv/
19+
ENV/
20+
.Python
21+
22+
# パッケージ管理
23+
*.egg
24+
*.egg-info/
25+
dist/
26+
build/
27+
.eggs/
28+
wheels/
29+
pip-wheel-metadata/
30+
*.manifest
31+
*.spec
32+
33+
# ログ / 一時ファイル
34+
*.log
35+
*.pot
36+
*.tmp
37+
*.swp
38+
*.swo
39+
40+
# テスト関連
41+
.coverage
42+
.tox/
43+
.nox/
44+
.pytest_cache/
45+
htmlcov/
46+
coverage.xml
47+
*.cover
48+
*.py,cover
49+
50+
# Jupyter Notebook
51+
.ipynb_checkpoints/
52+
*/.ipynb_checkpoints/*
53+
*.nbconvert.ipynb
54+
55+
# IDE / エディタ関連
56+
.vscode/
57+
.idea/
58+
*.sublime-project
59+
*.sublime-workspace
60+
61+
# OS依存ファイル
62+
.DS_Store
63+
Thumbs.db
64+
65+
# MyPy / Pyre / Type checker
66+
.mypy_cache/
67+
.dmypy.json
68+
dmypy.json
69+
.pyre/
70+
.pytype/
71+
72+
# その他キャッシュ
73+
.cache/
74+
.pybuilder/
75+
76+
# データファイル(大容量のもの)
77+
data/raw/
78+
*.csv
79+
*.xlsx
80+
*.parquet
81+
*.h5
82+
*.hdf5
83+
84+
# 機械学習モデル
85+
models/
86+
*.pkl
87+
*.joblib
88+
*.pb
89+
90+
# 画像・動画ファイル
91+
*.png
92+
*.jpg
93+
*.jpeg
94+
*.gif
95+
*.mp4
96+
*.avi
97+
98+
# 環境ファイル
99+
config.ini
100+
credentials.json
101+
102+
# Node.js関連
103+
node_modules/
104+
package-lock.json
105+
bun.lock

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.12.4
1+
3.12.11

0 commit comments

Comments
 (0)