Sunday, February 21, 2016

LeetCode Q71: Simplify Path

Given an absolute path for a file (Unix-style), simplify it.
For example,
path = "/home/", => "/home"
path = "/a/./b/../../c/", => "/c"


No comments:

Post a Comment