This commit is contained in:
2024-11-15 19:59:50 +01:00
parent 4f109da335
commit e4a47d025c
9 changed files with 46 additions and 37 deletions
-2
View File
@@ -26,7 +26,6 @@ async def async_iterator_generator(range_of_iterable):
"""
# TODO: OTHER
async def remove_characters(string, character):
"""
The `remove_characters` function removes all occurrences of a specified character from a given
@@ -39,7 +38,6 @@ async def remove_characters(string, character):
return string.replace(character, "")
# TODO: OTHER
async def max_weight(lista):
"""
Take a list of weights and return the maximum weight.