-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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 #1408
base: master
Are you sure you want to change the base?
Solution #1408
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great job on implementing the task requirements! 🎉 Your code is well-structured and meets all the core functionality as specified. While there are minor suggestions for improving variable naming for better readability, these do not impact the overall functionality. Keep up the good work and consider these suggestions for future improvements! 😊
✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨
|
||
def calculate_team_total_rating(player_list: list[Player]) -> int: | ||
all_rating = 0 | ||
for i in player_list: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider using a more descriptive variable name instead of i
for better readability, such as player
or elf
depending on the context. This aligns with the checklist recommendation to use descriptive and correct variable names.
|
||
|
||
def elves_concert(elf_list: list[Elf]) -> None: | ||
for i in elf_list: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider using a more descriptive variable name instead of i
for better readability, such as elf
. This aligns with the checklist recommendation to use descriptive and correct variable names.
|
||
|
||
def feast_of_the_dwarves(dwarf_list: list[Dwarf]) -> None: | ||
for i in dwarf_list: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider using a more descriptive variable name instead of i
for better readability, such as dwarf
. This aligns with the checklist recommendation to use descriptive and correct variable names.
No description provided.