Zoho Coding Round L2

zoho corporation logo
zoho corporation
June 25, 20257 reads

Summary

I successfully completed the Zoho L2 Coding Round, solving four distinct problems including taxi fare calculation, finding the Kth Largest Element, grouping Anagrams, and implementing an LRU Cache, all within a 90-minute timeframe with explanations.

Full Experience

Problem 1: Calculate fare of taxi with give time, starttime, distance. Very simple logic wise.
Problem 2: Find the Kth Largest Element.
Problem 3: Group Anagrams.
Problem 4: Implement LRU Cache

Simple problems only solved in 90 mins with explanations.

Interview Questions (4)

Q1
Calculate Taxi Fare
Data Structures & Algorithms

Calculate the fare of a taxi given the current time, start time, and distance traveled. The problem is described as having very simple logic.

Q2
Find Kth Largest Element
Data Structures & AlgorithmsMedium

Find the Kth largest element in an unsorted array.

Q3
Group Anagrams
Data Structures & AlgorithmsMedium

Given an array of strings strs, group the anagrams together. You can return the answer in any order.

Q4
Implement LRU Cache
Data Structures & AlgorithmsMedium

Design and implement a Least Recently Used (LRU) cache. It should support get and put operations.

Discussion (0)

Share your thoughts and ask questions

Join the Discussion

Sign in with Google to share your thoughts and ask questions

No comments yet

Be the first to share your thoughts and start the discussion!