From e2388fc2b3223c62c66890eda4b8ff5e1c81abb0 Mon Sep 17 00:00:00 2001 From: Leh-02 Date: Mon, 20 Apr 2026 18:48:21 +0300 Subject: [PATCH 1/2] solution --- app/main.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index f07695b9..d02d64fa 100644 --- a/app/main.py +++ b/app/main.py @@ -16,4 +16,9 @@ } collection_of_coins = {1, 2, 25} -# write your code here + +sorted_variables = { + "immutable": [pi, one_is_a_prime_number, lucky_number, name, profile_info], + "mutable" : [my_favourite_films, marks, + collection_of_coins] +} From 5afd6cafc068b7a93f7c6eb3acece252502a352b Mon Sep 17 00:00:00 2001 From: Leh-02 Date: Mon, 20 Apr 2026 18:58:12 +0300 Subject: [PATCH 2/2] solved --- app/main.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/main.py b/app/main.py index d02d64fa..0d6c8545 100644 --- a/app/main.py +++ b/app/main.py @@ -19,6 +19,5 @@ sorted_variables = { "immutable": [pi, one_is_a_prime_number, lucky_number, name, profile_info], - "mutable" : [my_favourite_films, marks, - collection_of_coins] + "mutable" : [my_favourite_films, marks, collection_of_coins], }