quick fixes

This commit is contained in:
bt3gl 2024-03-14 20:38:16 +01:00
parent d11285412e
commit 6275a92c6f
18 changed files with 18 additions and 18 deletions

View file

@ -5,7 +5,7 @@ setup(
version='0.0.1',
packages=find_packages(),
include_package_data=True,
author='steinkirch',
author='Mia Stein',
install_requires=[
],
entry_points='''

View file

@ -8,7 +8,7 @@ describing the height of each unit-width section of terrain, from left to
right. Your solution will return the total amount of width-times-height
retained by the terrain. You may assume that heights are non-negative integers.
Solution by bt3gl
Solution by Mia Stein
'''
def _create_wall_array(size) -> list:

View file

@ -8,7 +8,7 @@ describing the height of each unit-width section of terrain, from left to
right. Your solution will return the total amount of width-times-height
retained by the terrain. You may assume that heights are non-negative integers.
Solution by bt3gl
Solution by Mia Stein
'''