File: root - text - article - 2020 - 02 - absolute-path.txt
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Category: Computing | 973 Views, 25818 Search Bots | 78 Words
| Browse | Archive
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Category: Computing | 973 Views, 25818 Search Bots | 78 Words
| Browse | Archive
Hi, here's your problem today. This problem was recently asked by Facebook:
Given a file path with folder names, '..' (Parent directory), and '.' (Current directory), return the shortest possible file path (Eliminate all the '..' and '.').
Example
Input: '/Users/Joma/Documents/../Desktop/./../'
Output: '/Users/Joma/'
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Cateogry: Computing | 973 Views, 25818 Search Bots | 78 Words Given a file path with folder names, '..' (Parent directory), and '.' (Current directory), return the shortest possible file path (Eliminate all the '..' and '.').
Example
Input: '/Users/Joma/Documents/../Desktop/./../'
Output: '/Users/Joma/'
def shortest_path(file_path):
# Fill this in.
print shortest_path('/Users/Joma/Documents/../Desktop/./../')
# /Users/Joma/
Related Articles
- Daily Interview Puzzle: Ways to Traverse a Grid
- Daily Interview Question: Create a Simple Calculator
- Daily Interview Problem: Reverse Words in a String
- Daily Interview Problem: Contiguous Subarray with Maximum Sum
- Autorun.inf Virus Protection
- [Daily Problem] Angles of a Clock
- Algorithm Interview: Maximum Path Sum in Binary Tree
- CVE-2015-8874 - cPanel EasyApache Vulnerabilities
- Spreadsheet Column Title
- [Daily Problem] Course Prerequisites
©2006~2024 SteakOverCooked - 0.00742 Seconds(s) - 2563.526 KB/s - 7 Online Memory: 492.2 KB
18:54:01 up 13 days, 18:33, 2 users, load average: 0.98, 0.86, 0.73 - Server PHP Version: 7.4.33
How to Cook a Perfect Steak? | <meta name="robots" content="noindex, follow" />
18:54:01 up 13 days, 18:33, 2 users, load average: 0.98, 0.86, 0.73 - Server PHP Version: 7.4.33
Comments (0)
Read & Write - Normal - Mini - Post - All Comments - Statistics
Be the first one to comment this page !