69Course Schedule: can you finish all courses given prerequisites (cycle detection)?▼medium★ EssentialGoogleMetaAmazon1 replies◆ premiumCourse Schedule reduces to one question: is the prerequisite graph a DAG? The signal is spotting the graph framing and using topological sort or DFS to detect a cycle. Here is the answer.Open full answer →
36Your model runs on the data scientist's laptop but breaks in production. How do you package it for reproducible deployment?▼mediumAWSDatabricksMicrosoft1 replies◆ premium'Works on my machine' is a dependency and environment problem, and for ML it includes CUDA versions and exact library pins that change numerical results. Here is how to make the production environment match training.Open full answer →
32What are the supply-chain risks in AI (models, data, dependencies), and how do you manage them?▼mediumGoogleMicrosoftAnthropic1 replies◆ premiumEvery third-party model, dataset, and library is an attack surface: backdoors, poisoning, arbitrary code on load, license landmines. The signal is treating models and data as supply-chain artifacts that need provenance and vetting. Here is the answer.Open full answer →