package leetcode.p1342; import org.junit.Test; import static org.junit.Assert.*; /** * @ProjectName: LeetCode * @FileName: SolutionTest * @Author: 杨逸 * @Data:2024/4/9 14:26 * @Description: */ public class SolutionTest { @Test public void numberOfSteps() { Solution solution = new Solution(); System.out.println(solution.numberOfSteps(14)); } }