fixed find maxima function first 3

This commit is contained in:
ASPP Student 2025-09-23 16:29:50 +03:00
parent 952f8b97a5
commit d03243efe4
2 changed files with 29 additions and 1 deletions

View file

@ -1,6 +1,16 @@
from first import times_3
def test_times_3_integer():
pass
def test_times_3_string():
pass
def test_times_3_list():
value = [1]
expected = [1, 1, 1]
result = times_3(value)
assert result == expected