ru
Feedback
Coding Interview Preparation

Coding Interview Preparation

Открыть в Telegram
5 894
Подписчики
-124 часа
+147 дней
-430 день
Архив постов
📊 SQL SATURDAY #1 - The Basics, Done Right Let's start simple but do it properly. Here's our table:
employees
+----+----------+------------+--------+
| id | name     | department | salary |
+----+----------+------------+--------+
| 1  | Alice    | Engineering| 95000  |
| 2  | Bob      | Sales      | 62000  |
| 3  | Charlie  | Engineering| 105000 |
| 4  | Diana    | Marketing  | 70000  |
+----+----------+------------+--------+
Question: Find all employees in Engineering earning more than 100,000.
sql
SELECT name, salary
FROM employees
WHERE department = 'Engineering'
  AND salary > 100000;
Simple, right? But here's the interview trap: ⚠️ Common pitfall: People forget WHERE runs before SELECT logically, so you can't reference a column alias defined in SELECT inside your WHERE clause.
sql
-- This will ERROR in most databases:
SELECT salary * 1.1 AS new_salary
FROM employees
WHERE new_salary > 100000;  -- ❌ new_salary doesn't exist yet here
Fix it by repeating the expression or using a subquery/CTE. We'll get into CTEs in a few weeks 👀 What's a SQL mistake that tripped you up early on? 😅

🔍 GUESS THE OUTPUT #1 - full breakdown We apologize for marking wrong answe as correct in previous question. Explanation was correct, but right answer was not marked properly by accident. Correct answer is false. Here are some additional ones.
javascript
console.log(0.1 + 0.2 === 0.3);
console.log([1, 2, 3] + [4, 5, 6]);
console.log(typeof NaN);
Answers: 1️⃣ false - floating point math isn't exact. 0.1 + 0.2 = 0.30000000000000004 2️⃣ "1,2,34,5,6" - arrays get coerced to strings and concatenated, not added 3️⃣ "number" - yes, NaN is technically a number type. Ironic, we know. Got all 3 right? Drop a ✅ Missed one? Drop the number you got wrong - let's talk about it.

console.log(0.1 + 0.2 === 0.3) outputs:
Anonymous voting

🔍 GUESS THE OUTPUT #1 Language: JavaScript
javascript
console.log(0.1 + 0.2 === 0.3);
console.log([1, 2, 3] + [4, 5, 6]);
console.log(typeof NaN);
Lock in your answer, then vote on the quiz below 👇

🎯 CODING CHALLENGE #1 - Two Sum Difficulty: Easy | Asked at: Google, Amazon, Meta Given an array of integers nums and a target, return the indices of the two numbers that add up to target.
python
nums = [2, 7, 11, 15]
target = 9
# Expected output: [0, 1]
You can't use the same element twice, and there's exactly one valid answer. 💡 Hint: Before you reach for a brute-force double loop, ask yourself - what if you could look up "have I seen the number I need?" in O(1)? Try it yourself before scrolling for the solution 👇 Solution:
python
def two_sum(nums, target):
    seen = {}
    for i, num in enumerate(nums):
        complement = target - num
        if complement in seen:
            return [seen[complement], i]
        seen[num] = i
    return []
Complexity: O(n) time, O(n) space - one pass, hash map lookup. Common mistake: Candidates often solve this with nested loops (O(n²)) and stop there. If you already have the optimal solution, say it out loud early: "I can brute-force this in O(n²), but I think we can do better with a hash map." That sentence alone signals seniority. What's the first approach that came to your mind? 🤔

🚀 Welcome to the channel that actually gets you hired Not another "10 tips to ace your interview" account. Here you'll get: 🧠 Real interview questions (the ones companies actually ask) 🐛 Bugs that will make you say "oh no, I do that too" 💰 Salary scripts you can copy-paste into your next negotiation 🎯 Recruiter secrets nobody tells you 📊 SQL & System Design, from "what's a JOIN" to "design Netflix" No fluff. No generic advice. Just the stuff that gets offers. Drop a 🔥 if you're prepping for interviews right now - let's see how many of us are grinding together.

Hey, you probably saw in other channels that its my 31st birthday today 🥳 You also maybe saw that I have become a father, so I took vacation to be with my son 👼❤️ and also during this vacation I worked really hard while my boy sleeps to make our channels much more useful, so I am starting with this one. Starting tomorrow this channel will prepare you for your job interviews. There will posts more often and all posts will be related to each other. Get ready for coding challenges with hints and full solutions, quizzes that actually check what you learned, SQL and System Design series that build in difficulty week over week, plus real resources - not just tips to scroll past. I hope you will find it useful, your @bigdataspecialist 🧡

⏫ Monotonic Stack: Next Greater Element 📖 Core Idea: A monotonic stack keeps elements in strictly increasing or decreasing order. As you iterate, you pop elements that violate the order and use the popped results to answer “next greater/smaller” questions efficiently in a single pass. 🗯Real Interview Scenario: “Next Greater Element”, “Daily Temperatures”, or “Largest Rectangle in Histogram”. ✅ How to shine: Say:
I’ll maintain a monotonic decreasing stack of indices to find the first larger element in O(n) time
Explain why you traverse right-to-left for next greater. Dry-run a small example out loud. Interviewers love this clarity.

100 LeetCode Problems.pdf3.40 MB

💻 Backend Basics Interview Questions – (Node.js) 📍 1. What is Node.js? Answer: Node.js is a runtime environment that lets you run JavaScript on the server side. It uses Google’s V8 engine and is designed for building scalable network applications. 📍 2. How is Node.js different from traditional server-side platforms? Answer: Unlike PHP or Java, Node.js is event-driven and non-blocking. This makes it lightweight and efficient for I/O-heavy operations like APIs and real-time apps. 📍 3. What is the role of the package.json file? Answer: It stores metadata about your project (name, version, scripts) and dependencies. It’s essential for managing and sharing Node.js projects. 📍 4. What are CommonJS modules in Node.js? Answer: Node uses CommonJS to handle modules. You use require() to import and module.exports to export code between files. 📍 5. What is the Event Loop in Node.js? Answer: It allows Node.js to handle many connections asynchronously without blocking. It’s the heart of Node’s non-blocking architecture. 📍 6. What is middleware in Node.js (Express)? Answer: Middleware functions process requests before sending a response. They can be used for logging, auth, validation, etc. 📍 7. What is the difference between process.nextTick(), setTimeout(), and setImmediate()? Answer: ⦁ process.nextTick() runs after the current operation, before the next event loop. ⦁ setTimeout() runs after a minimum delay. ⦁ setImmediate() runs on the next cycle of the event loop. 📍 8. What is a callback function in Node.js? Answer: A function passed as an argument to another function, executed after an async task finishes. It’s the core of async programming in Node. 📍 9. What are Streams in Node.js? Answer: Streams let you read/write data piece-by-piece (chunks), great for handling large files. Types: Readable, Writable, Duplex, Transform. 📍 10. What is the difference between require and import? Answer: ⦁ require is CommonJS (used in Node.js by default). ⦁ import is ES6 module syntax (used with "type": "module" in package.json).

💰 Greedy Algorithm Mindset 📖 Core Idea: Greedy makes the locally best choice at every step, hoping these choices lead to a global optimum. It works well when the problem has optimal substructure and a greedy choice property that you can prove or justify. 🗯 Real Interview Scenario: “Jump Game”, “Minimum Number of Arrows to Burst Balloons”, or interval scheduling. ✅ How to shine: Share your greedy intuition first, then briefly prove why it works (e.g., “Sorting by end time guarantees we fit maximum activities”). Compare with DP when asked. This shows deeper problem-solving maturity.

DSA Roadmap for Coding Interviews 🧠 1️⃣ Start with the Basics – Learn Time & Space Complexity – Understand Big O notation 2️⃣ Master Arrays & Strings – Sliding window, Two pointers, Prefix sum – Practice problems like: Two Sum, Move Zeroes 3️⃣ Dive into Hashing – Use HashMap/HashSet for fast lookups – Problems: Longest Substring Without Repeat, Group Anagrams 4️⃣ Linked Lists – Learn traversal, reversal, cycle detection – Key problems: Detect Cycle, Merge Two Sorted Lists 5️⃣ Stacks & Queues – Infix to postfix, parentheses validation, monotonic stack – Problems: Valid Parentheses, Next Greater Element 6️⃣ Recursion & Backtracking – Subsets, Permutations, N-Queens – Key skill: build solution tree and backtrack correctly 7️⃣ Binary Search & Search Problems – Classic problems: Search in Rotated Array, Koko Eating Bananas – Understand upper/lower bounds 8️⃣ Trees & Binary Trees – DFS, BFS, Inorder/Preorder/Postorder – Problems: Lowest Common Ancestor, Diameter of Tree 9️⃣ Heaps & Priority Queues – Top K elements, Min/Max heap use cases 🔟 Graphs – BFS, DFS, Union-Find, Dijkstra’s – Practice shortest path, connected components, cycle detection 1️⃣1️⃣ Dynamic Programming (DP) – Start with 1D DP (Fibonacci, Climbing Stairs) – Move to 2D DP (Knapsack, LCS, Grid Paths) 💡Practice on LeetCode, Codeforces, GFG. Use patterns, not memorization. @coding_interview_preparation

🔄 Recursion & Backtracking Basics Core Idea: Function calls itself to break big problems into smaller identical ones. Add backtracking to explore all possibilities and undo choices. When to use: Subsets, permutations, combinations, or maze/path problems. 🗯Real Interview Scenario:
Generate all subsets
or “Word Search” in a grid. ✅ How to shine: Explain:
I’ll use recursion with backtracking to try choices and undo them.
Draw the recursion tree verbally. Always define clear base case first. Watch stack depth for large inputs. Practice 4-5 problems. Once comfortable, you’ll handle many medium/hard questions confidently.

HTTP status codes: Quick cheat sheet ✅ 200 OK: request succeeded 🆕 201 Created: new resource saved 📝 204 No Content: success, nothing to return 🔀 301 Moved Permanently: use new URL ↪️ 302 Found: temporary redirect 🧾 304 Not Modified: use cached version 🙅 400 Bad Request: invalid input 🪪 401 Unauthorized: missing/invalid auth 🚫 403 Forbidden: authenticated but not allowed ❓ 404 Not Found: resource doesn’t exist ⏳ 408 Request Timeout: client took too long 🧯 409 Conflict: state/version clash 💥 500 Internal Server Error: server crashed 🛠 502 Bad Gateway: upstream failed 🕸 503 Service Unavailable: overloaded/maintenance ⌛️ 504 Gateway Timeout: upstream too slow ✔️ Tips • return precise codes; don’t default to 200/500 • include a machine-readable error body (code, message, details) • never leak stack traces in production • pair 304 with ETag/If-None-Match for caching

⭐️ Behavioral: Nail Any “Tell Me About a Time” Question Use STAR method (Amazon/Google favorite): Situation: Short context Task: Your responsibility Action: What you did (focus here) Result: Quantify outcome (numbers = gold) Example Question:
Tell me about a challenging project.
Bad: Ramble story. ✅Good: 60-sec STAR answer ending with “...resulted in 25% faster processing.” 👉 Pro Move: Prepare 3-4 stories (failure, leadership, teamwork, conflict). Practice out loud. End with what you learned. This decides “culture fit”, prepare as hard as coding!

SQL Interview Questions with Answers 1. How to change a table name in SQL? This is the command to change a table name in SQL: ALTER TABLE table_name RENAME TO new_table_name; We will start off by giving the keywords ALTER TABLE, then we will follow it up by giving the original name of the table, after that, we will give in the keywords RENAME TO and finally, we will give the new table name. 2. How to use LIKE in SQL? The LIKE operator checks if an attribute value matches a given string pattern. Here is an example of LIKE operator SELECT * FROM employees WHERE first_name like ‘Steven’; With this command, we will be able to extract all the records where the first name is like “Steven”. 3. If we drop a table, does it also drop related objects like constraints, indexes, columns, default, views and sorted procedures? Yes, SQL server drops all related objects, which exists inside a table like constraints, indexes, columns, defaults etc. But dropping a table will not drop views and sorted procedures as they exist outside the table. 4. Explain SQL Constraints. SQL Constraints are used to specify the rules of data type in a table. They can be specified while creating and altering the table. The following are the constraints in SQL: NOT NULL CHECK DEFAULT UNIQUE PRIMARY KEY FOREIGN KEY @coding_interview_preparation

🌳 DFS vs BFS : Choose Right in 10 Seconds 👉 DFS (Stack/Recursion): Goes deep first. Great for path existence, cycle detection, or "any valid path". 👉 BFS (Queue): Level by level. Best for shortest path in unweighted graph or "minimum steps". 🗯 Interview Encounter: "Number of islands" or "Shortest path in maze" → BFS wins. "Validate BST" or "Clone graph" → DFS is natural. ✅ Pro Tip: Tell interviewer: “I’ll use BFS for shortest, DFS for space efficiency.” Always mention visited set to avoid cycles. Dry-run small example verbally.

Top JavaScript Interview Questions & Answers 💻 📍 1. What is JavaScript and why is it important? Answer: JavaScript is a dynamic, interpreted programming language that makes web pages interactive. It runs in browsers and on servers (Node.js), enabling features like animations, form validation, and API calls. 📍 2. Explain the difference between var, let, and const. Answer: var has function scope and is hoisted; let and const have block scope. const defines constants and cannot be reassigned. 📍 3. What are closures in JavaScript? Answer: Closures occur when a function remembers and accesses variables from its outer scope even after that outer function has finished executing. 📍 4. What is the Event Loop? Answer: The Event Loop manages asynchronous callbacks by pulling tasks from the callback queue and executing them after the call stack is empty, enabling non-blocking code. 📍 5. What are Promises and how do they help? Answer: Promises represent the eventual completion or failure of an asynchronous operation, allowing cleaner async code with .then(), .catch(), and async/await. 📍 6. Explain 'this' keyword in JavaScript. Answer: this refers to the context object in which the current function is executed — it varies in global, object, class, or arrow function contexts. 📍 7. What is prototypal inheritance? Answer: Objects inherit properties and methods from a prototype object, allowing reuse and shared behavior in JavaScript. 📍 8. Difference between == and === operators? Answer: == compares values after type coercion; === compares both value and type strictly. 📍 9. How do you handle errors in JavaScript? Answer: Using try...catch blocks for synchronous code and .catch() or try-catch with async/await for asynchronous errors. 📍 🔟 What are modules in JavaScript and their benefits? Answer: Modules split code into reusable files with import and export. They improve maintainability and scope management. 💡 Pro Tip: Complement your answers with simple code snippets and real project scenarios if/when possible.

🛠 Two Pointers Pattern: Spot It & Solve Fast When to use: Sorted arrays, find pairs, or remove duplicates. Simple Template:
left, right = 0, len(arr)-1
while left < right:
    if condition(arr[left], arr[right]):
        # found or move both
        left += 1
        right -= 1
    elif too_small:
        left += 1
    else:
        right -= 1
Interviewer:
Tell me if two numbers in a sorted array sum to target" (Two Sum II) or "Container With Most Water.
How to Answer:
Array is sorted, so two pointers from ends should work in O(n)
Show brute force first, then optimize. Practice: 3Sum, Remove Duplicates. 🔥 You will solve these in <15 mins next interview!

A developer changes a single function and unexpectedly breaks five unrelated features. Which design issue is MOST likely present?
Anonymous voting