1 result • Page 1 of 1
Showing : labsreset
1 result • Page 1 of 1
Request Recent Questions Now!
Filter Posts by Company
Amazon 87 Google 41 Oracle 38 GoldmanSachs 22 Uber 22 Sprinklr 22 Microsoft 21 deshaw 18 CodeNation 17 Cisco 16 BNY-Mellon 16 Walmart 15 Atlassian 15 media.net 15 Airtel 14 ZScaler 14 VISA 14 Flipkart 14 PhonePe 13 DBOI 13 Paytm 11 ByteDance 11 Adobe 10 TCS 10 Intuit 9 IBM 9 Publicis-Sapient 8 Razorpay 8 PayPal 8 Zomato 7 Barclays 7 Increff 7 Cred 7 Salesforce 7 Amadeus 7 Infosys 7 Tredence 7 Morgan-Stanley 6 GEDigital 6 Rubrik 6 saplabs 6 TVS 6 Credit-Suisse 6 Mastercard 5 Jaguar 5 uipath 5 Apollo 5 graviton 5 thoughtspot 5 QuantBox 5 curefit 5 JP-Morgan 5 HCL 5 Sigmoid 5 Samsung 5 Nvidia 5 standard-chartered 5 Juspay 5 Palo-Alto-Networks 4 arcesium 4 Hilabs 4 Wells-Fargo 4 Directi 4 Trilogy-Innovations 4 Juniper 4 American-Express 4 Accenture 4 Alphagrep 4 Avalara 4 Deloitte 4 Confluent 4 Goldman-Sachs 3 Jio 3 Navi 3 Hugosave 3 Citadel 3 Swiggy 3 AQR 3 Piramal 3 Meesho 3 Appdynamics 3 DevRev 3 Niro-Money 3 OYO 3 Qualcomm 3 Contlo 3 British-Telecom 3 Linkedin 3 Mathworks 3 Tiktok 3 Dpworld 3 Nagarro 3 HSBC 3 Capgemini 3 CapitalOne 3 relevel 2 USTD3 2 wipro 2 Edfora 2 Persistent 2 Gameskraft 2 DXC-Technology 2 Air-India 2 Dassault-Systems 2 shopconnect 2 Schrodinger 2 CITI 2 ServiceNow 2 Hexaware 2 Mercari 2 ringcentral 2 Chargebee 2 MAQ-Software 2 Tekion 2 Celigo 2 MotorQ 2 Arzoo 2 Edgeverve 2 Slice 1 Mentor-Graphics 1 Audify-Tech 1 AMD 1 Rippling 1 Cogoport 1 Virtusa 1 Optum 1 Winzo 1 Natwest 1 Wissen-Technology 1 Prograd 1 Observe.ai 1 Tiger-Analytics 1 Factset 1 Societe-Generale 1 Notion 1 Tibra 1 Trianz-Digital 1 darwinbox 1 Webstaff 1 Veritas 1 urbancompany 1 Kickdrum 1 Irage 1 Tech-Mahindra 1 makemytrip 1 Truminds 1 Zepto 1 Siemens 1 Pine-Labs 1 Cognizant 1 Rakuten 1 colortokens 1 Chalo 1 Bhanzu 1 Morphel 1 Intel 1 BP 1 Blackrock 1 Toshiba 1 LTI 0 Qburst 0 Flexcar 0 Medianet 0 Hudson-River-Trading 0 Steradian-Semiconductors 0 Hitachi 0 Bank-of-America 0 Newfold - Digital 0

Recent Replies

Answer: Latest Placement OA Coding Questions Solved | Strings & DP Knapsack by Rohit • 0
Question 2: Maximum Protein Value (Modified Knapsack) This is basically the classic "0-1 Knapsack" problem, but with a fun twist…
Answer: Latest Placement OA Coding Questions Solved | Strings & DP Knapsack by Rohit • 0
Question 1: Reverse ASCII Power We flip the alphabet so that 'a' is 26, 'b' is 25, and down to 'z' which i…
Comment: Latest HackerRank OA Coding Questions & Solutions | Server Faults & Modified Kna by Rohit • 0
Question 2: Madam C.J. Walker (Modified 0-1 Knapsack) Because the profit for the i-th item is 2^i, picking any item at index i is strictly…
Answer: Latest HackerRank OA Coding Questions & Solutions | Server Faults & Modified Kna by Rohit • 0
Question 1: Faulty Server Replacement We iterate through the logs and use a hash map to track consecutive errors for each server ID. Whe…
Comment: DeShaw Online Assessment (OA) Coding Questions | HackerRank | Same Substring | D by Rohit • 0
Question 2: Diverse Deputation We need to choose 3 people out of (m+w) total, excluding cases that don't have at least one man and one…
Comment: DeShaw Online Assessment (OA) Coding Questions | HackerRank | Same Substring | D by Rohit • 0
Question 1: Same Substring This uses a Sliding Window (Two Pointers) approach. We expand the window to the right and, if the total cost ex…
Answer: Goldman Sachs | October 2025 | Online Assessment(OA) | Minimum Network Lag (Data by Rohit • 0
The best way to solve this question is to sort the both the arrays and find the corresponding absolute difference center[i] and destination…
Answer: Morgan Stanley | Online Assement by pushy cat • 0
In my opinion this question itself could be a bit wrong.... i mean what if one cycle is inside another..... draw this on paper.... what eve…
Comment: Morgan Stanley | Online Assement by pushy cat • 0
In my opinion this question itself could be a bit wrong.... i mean what if one cycle is inside another..... draw this on paper.... what eve…
Answer: GOOGLE OA | SWE Internship 2023 | Triangles | Maximize Collection | 22nd July (S by Sankalp Anand • 0
#include <bits/stdc++.h> using namespace std;   vector<int> solve(int n, const vector<int>& c, int q, c…
Answer: Uber OA | 30th July 2023 by SHASHANK • 0
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() {     int n…
Answer: Google | Complex Subsequence | Subtree XOR by SHASHANK • 0
PROBLEM 4-MIN SQUARE ZEPTO DISTANCE       #include <iostream> #include <vector> #include <algor…
Answer: Google | Complex Subsequence | Subtree XOR by SHASHANK • 0
PROBLEM 1-COMPLEX SUBSEQUENCES       #include <iostream> #include <vector> #include <map> #…
Answer: GOOGLE OA | SWE Internship 2023 | Triangles | Maximize Collection | 22nd July (S by SHASHANK • 0
#include <iostream> #include <vector> #include <algorithm> #include <set> using namespace std; vector<i…
Answer: DE Shaw (DESIS Ascend | 17th September 2023) | Subarray Sums | Array Generator by Venkatvishaal T S • 0
arr=[1,2,1,-5] n=len(arr) a=-10**18 b=-10**18 c=-10**18 d=-10**18 s=0 for i in range(n):     s+=arr[i] …

Land on Leaderboard & Claim your Hamper

Start Solving Problems Now
Top Problem Solvers
This Month