From df8549d801227ac5937c96d929ba9ab5499c03eb Mon Sep 17 00:00:00 2001 From: Fedor Lyanguzov Date: Tue, 10 Dec 2024 14:35:21 +0300 Subject: [PATCH] 10.2 change collect function from list to iter --- 10/10.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/10/10.py b/10/10.py index 5ce75c0..028772f 100644 --- a/10/10.py +++ b/10/10.py @@ -39,4 +39,4 @@ d = ''' d = [list(map(int, x)) for x in d] print(f1(d)) -print(f1(data, list)) +print(f1(data, iter))