Algorithm/src/test/java/stack/SimplifyPathTest.java

16 lines
323 B
Java
Raw Normal View History

2025-05-13 17:16:41 +08:00
package stack;
import org.junit.Test;
import static org.junit.Assert.*;
public class SimplifyPathTest {
@Test
public void simplifyPath() {
String path = "/home/";
SimplifyPath solution = new SimplifyPath();
String res=solution.simplifyPath(path);
System.out.println(res);
}
}