GoogleDeepMind ML Interview Questions
10 real machine-learning interview questions reported from GoogleDeepMind.
Practice on the problems board →Print a Matrix in Diagonal Order
Interview Question: Print a Matrix in Diagonal Order Given a 2D matrix of size m × n, design a function that prints or…
Coding & Leetcode-style QuestionsClassify a Float Into One of Two Arrays
Interview Question: Classify a Float Into One of Two Arrays You are given two arrays of floating-point numbers, A and…
ML Fundamentals & AlgorithmsLLM conceptual questions (Not tied with a particular company)
Conceptual Questions on Transformers and Language Models These questions and answers cover foundational concepts…
Research & Paper UnderstandingRecover x from a Monotonic Function Output
Interview Question: Recover x from a Monotonic Function Output You are given a function func x that is strictly…
Coding & Leetcode-style QuestionsML + CS Fundamentals (2)
CS: Linked List Q: What is a linked list, and how does it differ from an array? Provide key operations and access…
ML Fundamentals & AlgorithmsML + CS Fundamentals (1)
Q: What is functional programming? A: Functional programming is a paradigm where programs are constructed using pure…
ML Fundamentals & AlgorithmsGenerate a Random Number Given Probability Distribution
Interview Question: Generate a Random Number According to a Given Probability Distribution You are given two arrays: 1.…
Coding & Leetcode-style QuestionsBitonic (Monotonic-Increase-Then-Decrease) Array
Question: Find the Maximum in a Bitonic Monotonic-Increase-Then-Decrease Array You are given a list of integers nums…
Coding & Leetcode-style QuestionsCAP Theorem in Distributed Systems
Interview Question: Explain the CAP Theorem in Distributed Systems Question Describe the CAP theorem as it applies to…
System Design for MLBuild an Undirected Graph and Traverse with DFS
Problem You are given a list of undirected edges. Each edge connects two nodes in a graph. Your task is to construct…
Coding & Leetcode-style Questions