From 1a878b9bf49e03b2dba9d1f76304954fe9b5853f Mon Sep 17 00:00:00 2001 From: Falaq Abdulmajeed Date: Thu, 9 Jan 2025 23:32:38 +0300 Subject: [PATCH] fix format --- solutions/cumulative_sum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solutions/cumulative_sum.py b/solutions/cumulative_sum.py index 2e77fb9d0..eb6d37207 100644 --- a/solutions/cumulative_sum.py +++ b/solutions/cumulative_sum.py @@ -13,7 +13,7 @@ - cumulative_sum(numbers: list) -> list: Computes and returns a list of cumulative sums from the input list. -Author: Falaq Youniss +Author: Falaq Youniss. Date: 29/12/2024 """