Google demands 60-Hour weeks

ALSO: API Gateway Design

In partnership with

Welcome back!

🎂 This week InstaByte celebrates 1 year! Happy anniversary to the whole community 🥳 

Today we will cover:

  • Kth Smallest Element in a BST

  • API Gateway Design

Read time: under 4 minutes

CODING CHALLENGE

Kth Smallest Element in a BST

Given the root of a binary search tree, and an integer k, return the k-th smallest value (1-indexed) of all the values of the nodes in the tree.

Example 1:

Input: root = [3,1,4,null,2], k = 1
Output: 1

Example 2:

Input: root = [5,3,6,2,4,null,null,1], k = 3
Output: 3

Solve the problem here before reading the solution.

PRESENTED BY HUBSPOT

Want to get the most out of ChatGPT?

ChatGPT is a superpower if you know how to use it correctly.

Discover how HubSpot's guide to AI can elevate both your productivity and creativity to get more things done.

Learn to automate tasks, enhance decision-making, and foster innovation with the power of AI.

LET'S CHAT

We would love to understand about your career aspirations, whats holding you back, and how can we help. Please share your contact details in this form, and will reach to you.

SOLUTION

To find the k-th smallest element in a BST, we can perform an inorder traversal.

Since inorder traversal of a BST visits nodes in ascending order, we just need to keep track of how many nodes we have visited.

We'll use an iterative approach with a stack to perform the inorder traversal. This avoids recursion stack overflow for very deep trees.

When we've visited k nodes, we'll have found our answer. This approach is efficient since we only need to traverse until we find the k-th element, not the entire tree.

The time complexity is O(H + k) where H is the height of the tree. In the worst case when k is large, it becomes O(N).

SYSTEM DESIGN

API Gateway Design

When you're building a system with multiple microservices, letting clients communicate directly with each service creates many problems. Clients need to know about all services, handle different protocols, and deal with authentication multiple times. An API Gateway solves these problems by acting as a single entry point for all client requests.

Here's how an API Gateway helps:

Authentication & Authorization

Instead of implementing security in each microservice, the API Gateway handles it centrally. When a request comes in, the gateway first checks if the user is allowed to access the service. This means your microservices can focus on their core functionality rather than dealing with security.

Request Routing

The gateway knows where each service lives and forwards requests to the right place. If you move a service to a different server, you only need to update the gateway's routing configuration. Clients don't need to know or care about these changes.

Request/Response Transformation

Different clients (mobile apps, web browsers, IoT devices) might need data in different formats. The API Gateway can transform requests and responses to match what each client expects. For example, a mobile app might need a lightweight response while a web app needs more detailed data.

Rate Limiting

To protect your services from being overwhelmed, the gateway can limit how many requests each client can make. This prevents any single client from using too many resources and keeps your system stable.

Monitoring & Analytics

Since all requests go through the gateway, it's the perfect place to collect metrics about API usage. You can track things like response times, error rates, and popular endpoints without adding code to your services.

Best Practices:

1. Keep the gateway simple - avoid adding business logic

2. Use caching for frequently requested data

3. Implement circuit breakers to handle service failures gracefully

4. Monitor gateway performance closely

5. Plan for scaling - the gateway can become a bottleneck

FEATURED COURSES

5 Courses of the Week

 Stanfords’s Algorithms Specialization: Master fundamental algorithms through programming assignments and conceptual learning. This specialization prepares you to excel in technical interviews and communicate fluently about algorithms without focusing on low-level implementation details.

 IBM’s Python for Data Science, AI & Development: Learn Python basics, data structures, and libraries (Pandas, NumPy) for data science and automation in this beginner-friendly course. You'll gain hands-on experience with Jupyter Notebooks, performing tasks like data collection and web scraping with APIs.

 Stanford’s ML Specialization: Build practical ML models using NumPy, scikit-learn, and TensorFlow across supervised and unsupervised learning techniques. Learn to create real-world AI applications including neural networks, recommendation systems, and reinforcement learning models.

 Hopkins’ R Programming: Develop effective data analysis skills by learning R programming fundamentals and statistical computing techniques. This course covers installing software, accessing R packages, writing functions, debugging, profiling code, and organizing R code through practical examples.

 Duke’s Intro to RAG: Build end-to-end Retrieval Augmented Generation systems using Pandas, SentenceTransformers and Qdrant in just 2 hours. This project-based course teaches you to create powerful generative AI apps with your own data using open-source tools.

LEARN AI 

Start learning AI in 2025

Keeping up with AI is hard – we get it!

That’s why over 1M professionals read Superhuman AI to stay ahead.

  • Get daily AI news, tools, and tutorials

  • Learn new AI skills you can use at work in 3 mins a day

  • Become 10X more productive

NEWS

This Week in the Tech World

Sergey Brin suggests 60-hour workweek: Google co-founder Sergey Brin told AI-focused employees that 60 hours a week is the "sweet spot" for productivity. Workplace experts disagree, warning that long hours can reduce efficiency and lead to burnout.

Alibaba unveils AI rival to DeepSeek: Alibaba introduced QwQ-32B, an AI model designed for advanced reasoning, claiming it rivals DeepSeek-R1. With a focus on efficiency, the model highlights China's growing competition in AI, which could reshape the global AI landscape.

AI cheating in job interviews: A Columbia student launched Interview Coder, an AI tool that helps programmers cheat in virtual job interviews. The rise of AI-assisted cheating has frustrated hiring managers, pushing Google and other tech firms to reconsider in-person interviews to ensure fair hiring practices.

Apple delays Siri AI upgrade: Apple has postponed its AI-powered Siri improvements to 2026. The update was meant to make Siri smarter and more integrated across apps, but delays put Apple behind OpenAI, Amazon, and Google in the race for next-gen AI assistants.

Meta’s secret ‘do not rehire’ list: A report claims Meta maintains a secret list barring certain former employees from rehire, even those with strong performance records. Some ex-workers discovered they were flagged after applying for jobs, but Meta insists hiring policies are fairly enforced.

Health-tech startup Freed raises $30M: Freed, a startup using AI to automate medical documentation, secured $30M in funding led by Sequoia. The AI scribe reduces paperwork for doctors, addressing burnout and improving patient focus. Over 17,000 clinicians now use Freed in 2M+ patient visits monthly.

Palantir delivers AI systems to U.S. Army: Palantir has delivered its first AI-powered TITAN systems to the U.S. Army under a $178M contract. The mobile AI units collect battlefield intelligence from space sensors to improve targeting and decision-making, marking a shift in military technology.

WHAT'S NEW IN AI?

There’s a reason 400,000 professionals read this daily.

Join The AI Report, trusted by 400,000+ professionals at Google, Microsoft, and OpenAI. Get daily insights, tools, and strategies to master practical AI skills that drive results.

BONUS

Just for laughs 😏

HELP US

👋 Hi there! We are on a mission to provide as much value as possible for free. If you want this newsletter to remain free, please help us grow by referring your friends:

📌 Share your referral link on LinkedIn or directly with your friends.
📌 Check your referrals status here.

YOUR FEEDBACK

What did you think of this week's email?

Your feedback helps us create better emails for you!

Login or Subscribe to participate in polls.

Until next time, take care! 🚀

Cheers,