From b8234b3605e3d9c5ca946db0bba3a828ccd77e11 Mon Sep 17 00:00:00 2001 From: Aleksandr Majlo Date: Sun, 16 Aug 2026 19:16:39 +0300 Subject: [PATCH 1/2] Implement mutable and immutable data structures --- app/main.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/main.py b/app/main.py index f07695b9b..b541d3671 100644 --- a/app/main.py +++ b/app/main.py @@ -17,3 +17,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 efc0defc3e1657ccfce9cb41fd3c4ab57b4dcc6f Mon Sep 17 00:00:00 2001 From: Aleksandr Majlo Date: Sun, 16 Aug 2026 19:24:32 +0300 Subject: [PATCH 2/2] Remove placeholder comment --- app/main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/main.py b/app/main.py index b541d3671..4d39e0963 100644 --- a/app/main.py +++ b/app/main.py @@ -16,7 +16,6 @@ } 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],