diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2025-02-19 09:43:52 +0200 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2025-02-19 09:43:52 +0200 |
commit | 8834da60a01294fd509c7cebf3b129fcc378d152 (patch) | |
tree | a1c6c4bd71e95780f87d35240754c5b54d3042ae /py_test_example.py | |
parent | 34bd7099d27656b4454015b0c410ca1713db5271 (diff) | |
download | cs-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.py | 7 |
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) |