We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c617af commit 06211bfCopy full SHA for 06211bf
tests/test_812_largest_triangle_area.py
@@ -12,7 +12,7 @@
12
([[1, 0], [0, 0], [0, 1]], 0.5),
13
],
14
)
15
-def test_func(points: List[List[int]], expected: List[int]):
+def test_func(points: List[List[int]], expected: float):
16
"""Tests the solution of a LeetCode problem."""
17
triangle_area = Solution().largestTriangleArea(points)
18
assert triangle_area == expected
0 commit comments