From 155630383941da74e43e39456010edc3340ff7eb Mon Sep 17 00:00:00 2001 From: Ksenia Malashchuk Date: Mon, 16 Dec 2024 20:08:04 +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 f07695b9..d9f2019a 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, collection_of_coins], + "immutamle": [profile_info, lucky_number, name, pi, one_is_a_prime_number] +} From ec31c641732a39a36904b464e9d5e871a06d0454 Mon Sep 17 00:00:00 2001 From: Ksenia Malashchuk Date: Mon, 16 Dec 2024 20:10:58 +0200 Subject: [PATCH 2/2] Solution --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index d9f2019a..7ccf3607 100644 --- a/app/main.py +++ b/app/main.py @@ -18,5 +18,5 @@ sorted_variables = { "mutable": [marks, my_favourite_films, collection_of_coins], - "immutamle": [profile_info, lucky_number, name, pi, one_is_a_prime_number] + "immutable": [profile_info, lucky_number, name, pi, one_is_a_prime_number] }