package leetcode.p3200; import org.junit.Test; /** * @ProjectName: LeetCode * @FileName: SolutionTest * @Author: 杨逸 * @Data:2024/10/15 11:28 * @Description: */ public class SolutionTest { @Test public void maxHeightOfTriangle() { Solution solution = new Solution(); System.out.println(solution.maxHeightOfTriangle(2, 4)); } }