We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee66c5a commit 6b5eedbCopy full SHA for 6b5eedb
388. Longest Absolute File Path.java
@@ -17,8 +17,6 @@ public int lengthLongestPath(String input) {
17
// add dir/file to path
18
curPath += "/" + entities[i].replace("\t", "");
19
curLvl++;
20
-
21
- System.out.println(curPath);
22
23
if ((curPath.length() > maxLen) && curPath.contains(".")) {
24
maxLen = curPath.length();
0 commit comments