From 17b711f8dc038d188de02513fe719803540227ce Mon Sep 17 00:00:00 2001 From: PintoJR Date: Sun, 16 Aug 2026 18:07:53 -0300 Subject: [PATCH 1/8] Solution --- app/main.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/main.py b/app/main.py index f07695b9b..7b946fe0d 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] +} \ No newline at end of file From 0f1c139a29e32e93fda80323e8e4ec7dbf8a50cc Mon Sep 17 00:00:00 2001 From: PintoJR Date: Sun, 16 Aug 2026 18:13:58 -0300 Subject: [PATCH 2/8] Solution --- app/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/main.py b/app/main.py index 7b946fe0d..7a7f2fa5a 100644 --- a/app/main.py +++ b/app/main.py @@ -18,6 +18,6 @@ # 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] + "mutable": [my_favourite_films, marks, collection_of_coins, profile_info], + "immutable": [lucky_number, pi, one_is_a_prime_number, name] } \ No newline at end of file From df1bddc206ede05f94e9fb8f76dbdd53483407c5 Mon Sep 17 00:00:00 2001 From: PintoJR Date: Sun, 16 Aug 2026 18:21:56 -0300 Subject: [PATCH 3/8] Solution --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 7a7f2fa5a..71a55a3c8 100644 --- a/app/main.py +++ b/app/main.py @@ -20,4 +20,4 @@ sorted_variables = { "mutable": [my_favourite_films, marks, collection_of_coins, profile_info], "immutable": [lucky_number, pi, one_is_a_prime_number, name] -} \ No newline at end of file +} From d23e3561aeb715a888985f0ee12e0dd362d2e4f3 Mon Sep 17 00:00:00 2001 From: PintoJR Date: Sun, 16 Aug 2026 18:26:53 -0300 Subject: [PATCH 4/8] Solution --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 71a55a3c8..964fb7b3f 100644 --- a/app/main.py +++ b/app/main.py @@ -16,8 +16,8 @@ } collection_of_coins = {1, 2, 25} -# write your code here sorted_variables = { "mutable": [my_favourite_films, marks, collection_of_coins, profile_info], "immutable": [lucky_number, pi, one_is_a_prime_number, name] } + From c092ddba963c444ad097bc6d0e608843c0ccaf73 Mon Sep 17 00:00:00 2001 From: PintoJR Date: Sun, 16 Aug 2026 18:33:04 -0300 Subject: [PATCH 5/8] Solution --- app/main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/main.py b/app/main.py index 964fb7b3f..bd22e2e23 100644 --- a/app/main.py +++ b/app/main.py @@ -16,8 +16,8 @@ } collection_of_coins = {1, 2, 25} +# write your code here sorted_variables = { - "mutable": [my_favourite_films, marks, collection_of_coins, profile_info], - "immutable": [lucky_number, pi, one_is_a_prime_number, name] + "mutable": [my_favourite_films, marks, profile_info], + "immutable": [lucky_number, pi, one_is_a_prime_number, name, collection_of_coins] } - From 28854758737c2c197266496ed9492a105cf6f2d2 Mon Sep 17 00:00:00 2001 From: PintoJR Date: Sun, 16 Aug 2026 18:35:58 -0300 Subject: [PATCH 6/8] Solution --- app/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/main.py b/app/main.py index bd22e2e23..958f9fc7d 100644 --- a/app/main.py +++ b/app/main.py @@ -18,6 +18,6 @@ # write your code here sorted_variables = { - "mutable": [my_favourite_films, marks, profile_info], - "immutable": [lucky_number, pi, one_is_a_prime_number, name, collection_of_coins] + "mutable": [my_favourite_films, marks, profile_info, collection_of_coins], + "immutable": [lucky_number, pi, one_is_a_prime_number, name] } From 78c33ca332c106f3ebc8f1e6ef78586de2ceb1c6 Mon Sep 17 00:00:00 2001 From: PintoJR Date: Sun, 16 Aug 2026 18:45:05 -0300 Subject: [PATCH 7/8] Solution --- app/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/main.py b/app/main.py index 958f9fc7d..0cee2dcb5 100644 --- a/app/main.py +++ b/app/main.py @@ -18,6 +18,6 @@ # write your code here sorted_variables = { - "mutable": [my_favourite_films, marks, profile_info, collection_of_coins], - "immutable": [lucky_number, pi, one_is_a_prime_number, name] + "mutable": [my_favourite_films, marks, collection_of_coins], + "immutable": [lucky_number, pi, one_is_a_prime_number, name, profile_info] } From 191ab83bfdbcb7f5a4700d4172813765945beb70 Mon Sep 17 00:00:00 2001 From: PintoJR Date: Sun, 16 Aug 2026 18:57:55 -0300 Subject: [PATCH 8/8] Solution --- app/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/main.py b/app/main.py index 0cee2dcb5..a48d5bd4a 100644 --- a/app/main.py +++ b/app/main.py @@ -21,3 +21,4 @@ "mutable": [my_favourite_films, marks, collection_of_coins], "immutable": [lucky_number, pi, one_is_a_prime_number, name, profile_info] } +