To the Top
File:  root - text - article - 2019 - 11 - course.txt
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Category: Computing | 1447 Views, 14807 Search Bots | 159 Words

Subscribe to Feed Burner | Browse | Archive
Hi, here's your problem today. This problem was recently asked by Google:

By the way, check out our NEW project AlgoPro (http://algopro.com) for over 60+ video coding sessions with ex-Google/ex-Facebook engineers.

You are given a hash table where the key is a course code, and the value is a list of all the course codes that are prerequisites for the key. Return a valid ordering in which we can complete the courses. If no such ordering exists, return NULL.

Example:

{
'CSC300': ['CSC100', 'CSC200'],
'CSC200': ['CSC100'],
'CSC100': []
}


This input should return the order that we need to take these courses:
['CSC100', 'CSC200', 'CSCS300']

Here's your starting point:


def courses_to_take(course_to_prereqs):
# Fill this in.

courses = {
'CSC300': ['CSC100', 'CSC200'],
'CSC200': ['CSC100'],
'CSC100': []
}

print courses_to_take(courses)
# ['CSC100', 'CSC200', 'CSC300']
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Cateogry: Computing | 1447 Views, 14807 Search Bots | 159 Words Subscribe to Feed Burner

Related Articles

  1. Daily Interview Problem: Distribute Bonuses
  2. [Daily Problem] Remove Consecutive Nodes that Sum to 0
  3. [Daily Problem] Course Prerequisites
  4. Design Tic-Tac-Toe
  5. Print a tree level-by-level, with line-breaks
  6. Fix Brackets
  7. Daily Interview Question: Edit Distance
  8. Algorithm Interview Question: Symmetric k-ary Tree
  9. Daily Interview Problem: Maximum Profit From Stocks
  10. New Vulnerabilities (CVE-2016-4581) have been detected in CentOS/RHEL/CloudLinux 7

Comments (0)

Your Email (Domain Part Not Exposed):

Your Comments:

Privately By Mail Colors More Smileys S x y @

Verification (Click Image 2 Refresh):

    Be the first one to comment this page !


Page Edited: May 11 2024 14:36:49 | RSS Subscription
How to Cook a Perfect Steak? | <meta name="robots" content="noindex, follow" />