← 返回 amazon 的题目列表System Design for Package Installer with Dependency Resolution
类型:online_judge
Design a package installer system that respects dependency resolution between packages.
Example
Input
{'pkgA': ['pkgB'], 'pkgB': [], 'pkgC': ['pkgA']}
Output
['pkgB', 'pkgA', 'pkgC']