From 2821f050c0e9c9d249e7cd26d09e52840b8b014d Mon Sep 17 00:00:00 2001 From: Andrey Jekul Date: Tue, 16 Jun 2026 17:32:21 +0300 Subject: [PATCH 1/3] Sort the mutable / immutable values to sorted_variables --- app/main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index f07695b9b..5789d4378 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 640c6e77424a3c9e1c3768e1d69386b49625ee1f Mon Sep 17 00:00:00 2001 From: Andrey Jekul Date: Tue, 16 Jun 2026 17:39:20 +0300 Subject: [PATCH 2/3] Revert "Sort the mutable / immutable values to sorted_variables" This reverts commit 2821f050c0e9c9d249e7cd26d09e52840b8b014d. --- app/main.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/app/main.py b/app/main.py index 5789d4378..f07695b9b 100644 --- a/app/main.py +++ b/app/main.py @@ -16,7 +16,4 @@ } 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] -} +# write your code here From 4c5a1fbffd67a36ead93d4df222b186dc25abb2d Mon Sep 17 00:00:00 2001 From: Andrey Jekul Date: Tue, 16 Jun 2026 20:28:07 +0300 Subject: [PATCH 3/3] Sort the mutable / immutable values to sorted_variables --- app/main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index f07695b9b..5789d4378 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] +}