Skip to content

Commit 6b5eedb

Browse files
authored
Update 388. Longest Absolute File Path.java
1 parent ee66c5a commit 6b5eedb

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

388. Longest Absolute File Path.java

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ public int lengthLongestPath(String input) {
1717
// add dir/file to path
1818
curPath += "/" + entities[i].replace("\t", "");
1919
curLvl++;
20-
21-
System.out.println(curPath);
2220

2321
if ((curPath.length() > maxLen) && curPath.contains(".")) {
2422
maxLen = curPath.length();

0 commit comments

Comments
 (0)