Was asked about trees and balancing binary trees
Software Engineer 1 Interview Questions
3,932 software engineer 1 interview questions shared by candidates
1. Tell me about yourself 2. Tell me about ur last day or current day till now 3. Write or share something about ur hometown
technical round: circuit breaker LLD implementation, with concurrency, thread safety etc
Leetcode problem, Computer Science Concepts Projects
You are part of a university admissions office and need to keep track of the kth highest test score from applicants in real-time. This helps to determine cut-off marks for interviews and admissions dynamically as new applicants submit their scores. You are tasked to implement a class which, for a given integer k, maintains a stream of test scores and continuously returns the kth highest test score after a new score has been submitted. More specifically, we are looking for the kth highest score in the sorted list of all scores. Implement the KthLargest class: KthLargest(int k, int[] nums) Initializes the object with the integer k and the stream of test scores nums. int add(int val) Adds a new test score val to the stream and returns the element representing the kth largest element in the pool of test scores so far. Example 1: Input: ["KthLargest", "add", "add", "add", "add", "add"] [[3, [4, 5, 8, 2]], [3], [5], [10], [9], [4]] Output: [null, 4, 5, 5, 8, 8]
Tell me something about yourself?
How did I deal to the challenges I faced back when I was in college.
They asked me to tell something about myself
A lot of question about my work and personal attitude.
Find LCA in a binary search tree
Viewing 1411 - 1420 interview questions