← ALL NOTES
String

71. Simplify Path

Split on / and the path becomes a stream of tokens, and a stack of directory names models navigation exactly: a normal name is push (step into a directory), .. is pop (step up), and . or an empty…

Loading…