Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Solution #2112

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
Binary file added app/__pycache__/main.cpython-312.pyc
Binary file not shown.
16 changes: 14 additions & 2 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,17 @@
"Sergio": 3,
}
collection_of_coins = {1, 2, 25}

# write your code here
sorted_variables = {
"mutable": [
my_favourite_films,
marks,
collection_of_coins
Comment on lines 17 to +22

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The collection_of_coins variable is a set, which is an immutable type in Python. It should be categorized under the 'immutable' key in the sorted_variables dictionary.

],
"immutable": [
lucky_number,
pi,
one_is_a_prime_number,
name,
profile_info
]
}
1 change: 1 addition & 0 deletions py-linter-formatter/py-linter-formatter
Submodule py-linter-formatter added at 2cd836
Binary file added tests/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file not shown.
Loading