From 7ffa5abe3abd49faf55b869e57d8b0edc269d449 Mon Sep 17 00:00:00 2001 From: andriihrechko Date: Thu, 19 Mar 2026 01:00:43 +0200 Subject: [PATCH 1/2] Solution --- app/main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index f07695b9b..5e3e7caa5 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] +} From b761e97e238eedd57277c4da0285d596b28f4d70 Mon Sep 17 00:00:00 2001 From: andriihrechko Date: Thu, 19 Mar 2026 01:05:02 +0200 Subject: [PATCH 2/2] Corrected solution --- app/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/main.py b/app/main.py index 5e3e7caa5..5789d4378 100644 --- a/app/main.py +++ b/app/main.py @@ -17,6 +17,6 @@ collection_of_coins = {1, 2, 25} sorted_variables = { - 'mutable': [my_favourite_films, marks, collection_of_coins], - 'immutable': [lucky_number, pi, one_is_a_prime_number, name, profile_info] + "mutable": [my_favourite_films, marks, collection_of_coins], + "immutable": [lucky_number, pi, one_is_a_prime_number, name, profile_info] }