From 7c1195a6730db17f75146c622ee44430339460d4 Mon Sep 17 00:00:00 2001 From: krzyb5081 Date: Sun, 21 Jun 2026 16:23:20 +0200 Subject: [PATCH 1/2] Solve the problem --- app/main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index f07695b9b..00f07c1c6 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": [marks, my_favourite_films, name, one_is_a_prime_number, pi, lucky_number], + "immutable": [profile_info] +} From b5d29f877086f7c80d61610fb4342c504f4dcff0 Mon Sep 17 00:00:00 2001 From: krzyb5081 Date: Sun, 21 Jun 2026 16:44:49 +0200 Subject: [PATCH 2/2] Fix --- app/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/main.py b/app/main.py index 00f07c1c6..9af3a1cf2 100644 --- a/app/main.py +++ b/app/main.py @@ -17,6 +17,6 @@ collection_of_coins = {1, 2, 25} sorted_variables = { - "mutable": [marks, my_favourite_films, name, one_is_a_prime_number, pi, lucky_number], - "immutable": [profile_info] + "mutable": [my_favourite_films, marks, collection_of_coins], + "immutable": [profile_info, name, one_is_a_prime_number, pi, lucky_number], }