CMU Coding Bootcamp

fix: add missing docstring

thecoded.prof 0da7eeed 62599897

verified
Changed files
+1
python
oct1
+1
python/oct1/level2/getTriangeType.py
··· 4 4 5 5 6 6 def getTriangleType(a: float, b: float, c: float) -> str: 7 + """Return the type of triangle formed by sides a, b, and c.""" 7 8 if not isLegalTriangle(a, b, c): 8 9 return "illegal" 9 10 if a == b and b == c: