Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Emily Graber committed Feb 8, 2024
1 parent 7bf7146 commit de05611
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions primality/primality/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ class PrimalityTestingApproach(str, Enum):
EFFICIENT = "efficient"

# TODO: Produce a human-readable Yes or No for a boolean value of True or False.
# TODO: You may wish to review the Integer Square code to find an example of this
def human_readable_boolean(answer: bool) -> str:
"""Produce a human-readable Yes or No for a boolean value of True or False."""
# TODO: produce a human-readable value for a bool
Expand All @@ -36,8 +35,6 @@ def human_readable_boolean(answer: bool) -> str:
# This return value is a placeholder
return "Yes"

# TODO: Research the type annotations here and change one if necessary
# https://mypy.readthedocs.io/en/stable/cheat_sheet_py3.html
def pretty_print_list(values: Iterable[int]) -> str:
"""Pretty print a list without brackets and adding commas."""
# TODO: create and return a version of the list without brackets
Expand Down

0 comments on commit de05611

Please sign in to comment.