Skip to content

Commit ce69f76

Browse files
Changes to be committed:
modified: .gitignore modified: Exercise/__pycache__/function_task.cpython-38.pyc modified: Exercise/function_task.py modified: tests/__pycache__/test_function.cpython-38-pytest-8.3.5.pyc
1 parent 1cb2f35 commit ce69f76

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
/venv
1+
/venv
2+
3+
__pycache__
211 Bytes
Binary file not shown.

Exercise/function_task.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,12 @@ def function_2(n: int) -> bool:
2323

2424
def function_3(n: int) -> list:
2525
"""
26-
26+
Buat fungsi untuk mengembalikan semua faktor dari n,
27+
contoh 6 = [1, 2, 3, 6]
2728
"""
29+
#TODO: lengkapi fungsi ini
30+
31+
pass
2832

2933

3034

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)