aboutsummaryrefslogtreecommitdiff
path: root/py_test_example.py
diff options
context:
space:
mode:
authorZhongheng Liu <z.liu@outlook.com.gr>2025-02-19 09:43:52 +0200
committerZhongheng Liu <z.liu@outlook.com.gr>2025-02-19 09:43:52 +0200
commit8834da60a01294fd509c7cebf3b129fcc378d152 (patch)
treea1c6c4bd71e95780f87d35240754c5b54d3042ae /py_test_example.py
parent34bd7099d27656b4454015b0c410ca1713db5271 (diff)
downloadcs-y13-8834da60a01294fd509c7cebf3b129fcc378d152.tar.gz
cs-y13-8834da60a01294fd509c7cebf3b129fcc378d152.tar.bz2
cs-y13-8834da60a01294fd509c7cebf3b129fcc378d152.zip
chore: changing to ipynb
Diffstat (limited to 'py_test_example.py')
-rw-r--r--py_test_example.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/py_test_example.py b/py_test_example.py
deleted file mode 100644
index 3386a11..0000000
--- a/py_test_example.py
+++ /dev/null
@@ -1,7 +0,0 @@
-def x(n: int):
- if ( n == 0 ) or ( n == 1 ):
- print(n, end="")
- return
- x(n // 2)
- print(n % 2, end="")
-x(255)