Fix: Ensure all skills are tracked as files, not submodules
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
def triangle_area(a, h):
|
||||
"""Given length of a side and high return area for a triangle.
|
||||
>>> triangle_area(5, 3)
|
||||
7.5
|
||||
"""
|
||||
return (a * h) / 2
|
||||
Reference in New Issue
Block a user