From a8d785b73296210b92767a2fe2eac80a22508951 Mon Sep 17 00:00:00 2001 From: volodymyr Date: Thu, 20 Aug 2026 22:22:44 +0300 Subject: [PATCH 1/2] Create pull request From 7e1e5c7982fcbc90d52e2ab50944d641093a608c Mon Sep 17 00:00:00 2001 From: volodymyr Date: Fri, 21 Aug 2026 22:37:41 +0300 Subject: [PATCH 2/2] Implement mutable and immutable sorting --- app/main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index f07695b9b..43ccb462b 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, collection_of_coins, marks], + "immutable": [name, lucky_number, pi, one_is_a_prime_number, profile_info] +}