← 返回 amazon 的题目列表Amazon Training Courses Catalog Validation Function: Detecting Cycles
类型:online_judge
Write a function to validate an Amazon training courses catalog to ensure there are no cyclic dependencies present between courses.
Example
Input
{'A': ['B'], 'B': ['C'], 'C': []}
Output
True