Crawler Log Folder - Problem
The Leetcode file system keeps a log each time some user performs a change folder operation.
The operations are described below:
"../": Move to the parent folder of the current folder. (If you are already in the main folder, remain in the same folder)."./": Remain in the same folder."x/": Move to the child folder named x (This folder is guaranteed to always exist).
You are given a list of strings logs where logs[i] is the operation performed by the user at the ith step.
The file system starts in the main folder, then the operations in logs are performed.
Return the minimum number of operations needed to go back to the main folder after the change folder operations.
Input & Output
Example 1 — Basic Navigation
$
Input:
logs = ["d1/","d2/","../","d21/","./"]
›
Output:
2
💡 Note:
Start at main → d1 (depth 1) → d2 (depth 2) → back to d1 (depth 1) → d21 (depth 2) → stay in d21 (depth 2). Need 2 operations to return to main.
Example 2 — Stay at Main
$
Input:
logs = ["d1/","../","../","../"]
›
Output:
0
💡 Note:
Start at main → d1 (depth 1) → back to main (depth 0) → try to go up but stay at main (depth 0) → stay at main (depth 0). Already at main, need 0 operations.
Example 3 — Only Stay Operations
$
Input:
logs = ["./","./","./"]
›
Output:
0
💡 Note:
All operations are stay commands, remain at main folder throughout. Need 0 operations to return.
Constraints
- 1 ≤ logs.length ≤ 103
- 2 ≤ logs[i].length ≤ 10
- logs[i] contains lowercase English letters, digits, '.', and '/'
- logs[i] follows the format described in the statement
Visualization
Tap to expand
Understanding the Visualization
1
Input
Array of folder operations: child folders, parent (..), and stay (.)
2
Process
Track depth level as we navigate through folders
3
Output
Number of parent operations needed to return to main
Key Takeaway
🎯 Key Insight: Only the current depth matters, not the folder names - use a simple counter
💡
Explanation
AI Ready
💡 Suggestion
Tab
to accept
Esc
to dismiss
// Output will appear here after running code