From 84bd59f3575c597b6fe2d3c435d4bcede76339fd Mon Sep 17 00:00:00 2001 From: Andrii Moskalenko Date: Thu, 26 Mar 2026 13:46:20 +0100 Subject: [PATCH 1/4] Solution --- app/main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index f07695b9b..1e87e595a 100644 --- a/app/main.py +++ b/app/main.py @@ -16,4 +16,7 @@ } collection_of_coins = {1, 2, 25} -# write your code here +sorted_variables = { + "mutable": [my_favourite_films, marks, collection_of_coins], + "immutable": [lucky_number, pi, one_is_a_prime_number, name, profile_info], +} \ No newline at end of file From 66ac6e0df1c946430bdaedfd2b5c65bb9a19a7e0 Mon Sep 17 00:00:00 2001 From: Andrii Moskalenko Date: Thu, 26 Mar 2026 13:51:26 +0100 Subject: [PATCH 2/4] Solution --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 1e87e595a..4d39e0963 100644 --- a/app/main.py +++ b/app/main.py @@ -19,4 +19,4 @@ sorted_variables = { "mutable": [my_favourite_films, marks, collection_of_coins], "immutable": [lucky_number, pi, one_is_a_prime_number, name, profile_info], -} \ No newline at end of file +} From 36243f25f244c824a86f007c4ca228accd19cc76 Mon Sep 17 00:00:00 2001 From: Andrii Moskalenko Date: Thu, 26 Mar 2026 13:58:47 +0100 Subject: [PATCH 3/4] Fixed --- app/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/main.py b/app/main.py index 4d39e0963..56c6e6834 100644 --- a/app/main.py +++ b/app/main.py @@ -20,3 +20,4 @@ "mutable": [my_favourite_films, marks, collection_of_coins], "immutable": [lucky_number, pi, one_is_a_prime_number, name, profile_info], } + From cd9886fb585204c40d16a076d5c8f8b65cce801c Mon Sep 17 00:00:00 2001 From: Andrii Moskalenko Date: Thu, 26 Mar 2026 14:04:12 +0100 Subject: [PATCH 4/4] Solution --- app/main.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/main.py b/app/main.py index 56c6e6834..5789d4378 100644 --- a/app/main.py +++ b/app/main.py @@ -18,6 +18,5 @@ sorted_variables = { "mutable": [my_favourite_films, marks, collection_of_coins], - "immutable": [lucky_number, pi, one_is_a_prime_number, name, profile_info], + "immutable": [lucky_number, pi, one_is_a_prime_number, name, profile_info] } -