Latest
Topics
Tags
News
Jobs
Tutorials
Forum
Planet
Community
New Post
Log In
About
New Post
Latest
News
Jobs
Tutorials
Forum
Tags
Planet
Users
Log In
Sign Up
About
Limit to: all time
all time
today
this week
this month
this year
8 results • Page
1 of 1
Sort by: Post Creation Date
Post Creation date
Recent Activity
Views
Votes
Replies
Showing :
gocc
•
reset
4
Votes
5
Replies
104
Views
Google | Coding Round (GOCC) | July 2021
4 Votes | 5 Replies
gocc
coding-round
google
12 months ago
mod2
• 760
• updated 12 months ago
pathetic_puma
• 30
0
Votes
2
Replies
82
Views
Google | Coding Round (GOCC) | July 2021
0 Votes | 2 Replies
gocc
coding-round
google
12 months ago
mod2
• 760
0
Votes
1
Reply
67
Views
Google | Coding Round (GOCC) | July 2021
0 Votes | 1 Reply
gocc
coding-round
google
12 months ago
mod2
• 760
0
Votes
1
Reply
54
Views
Google | Coding Round (GOCC) | 17th June 2021
0 Votes | 1 Reply
gocc
coding-round
google
12 months ago
mod2
• 760
2
Votes
3
Replies
88
Views
Google | Coding Round (GOCC) | 14th June 2021
2 Votes | 3 Replies
coding-round
google
GOCC
12 months ago
mod2
• 760
0
Votes
1
Reply
52
Views
Google | GOCC | 2020 | Set - 3
0 Votes | 1 Reply
contest
GOCC
google
22 months ago
mod2
• 760
• updated 22 months ago
papa
• 260
3
Votes
4
Replies
96
Views
Google | GOCC | 2020 | 4pm
3 Votes | 4 Replies
contest
GOCC
google
22 months ago
mod2
• 760
• updated 22 months ago
admin
690
0
Votes
1
Reply
73
Views
Google | GOCC | 2020
0 Votes | 1 Reply
gocc
google
contest
22 months ago
admin
690
• updated 22 months ago
manas_kv
80
8 results • Page
1 of 1
Recent Votes
Amazon OA - Set 3 - Oncampus 2022
Oracle - Member of Technical Staff - OnCampus (2022)
Wells Fargo 2022 Full Time Hiring
Oracle - Member of Technical Staff - OnCampus (2022)
Oracle - Member of Technical Staff - OnCampus (2022)
Wells Fargo 2022 Full Time Hiring
Answer: Sprinklr Coding Round Oncampus 2022
Answer: Sprinklr Coding Round Oncampus 2022
Answer: Sprinklr Coding Round Oncampus 2022
Comment: Sprinklr Coding Round Oncampus 2022
Company Tags
Recent Locations
• All
India/Pune,
4 days ago
delhi,
26 days ago
Gaya,
5 weeks ago
India,
3 months ago
IIIT Naya Raipur,
5 months ago
Recent Awards
• All
Scholar
to
Gigaliths
• 90
Teacher
to
Gigaliths
• 90
Scholar
to
garg.6
• 40
Teacher
to
garg.6
• 40
Teacher
to
Viren Khatri
• 50
Centurion
to
mod2
• 760
Commentator
to
admin
690
Popular Question
to
admin
690
Scholar
to
mrinal.shashwat
• 30
Teacher
to
mrinal.shashwat
• 30
Recent Replies
Answer: Amazon OA - Set 3 - Oncampus 2022
by
aditya.aggarwal393
• 0
Was this for Intern or Full Time?
Comment: Sprinklr Coding Round Oncampus 2022
by
mod2
• 760
**Quick Solution Sketches** *Problem 1* There are multiple ways to solve this. One approach is to mantain sliding window and do basic coun…
Answer: Sprinklr Coding Round Oncampus 2022
by
Gigaliths
• 90
Problem 3 > Observation 1 : There are roughly 25 prime numbers between 2-100. > Observation 2 : Each node can choose any of these 2…
Answer: Amazon OA - Set 3 - Oncampus 2022
by
srijansriv
• 0
the last question is very clear maybe because its unconventional (or incomplete). could you please elaborate, thanks!
Comment: Microsoft Coding Round Oncampus - 2022
by
admin
690
Both, the idea and code is neat!
Answer: Microsoft Coding Round Oncampus - 2022
by
mod2
• 760
<h3>Solution 1</h3> <b>Number of subarrays with average = K</b> <pre> Educational Tip (AVERAGE-TRICK) For a lot of problems involving 'ave…
Answer: Microsoft Coding Round Oncampus - 2022
by
mod2
• 760
Problem 1 --------- **Number of subarrays with average = K** Educational Tip (AVERAGE-TRICK) For a lot of problems involving 'av…
Answer: Google Online Coding Challenge 23rd July
by
Raghavendra
• 30
The Question is a variation of pick not pick pattern[DP](Here pick means choose first element and non-pick means choose second element). …
Answer: Google Online Coding Challenge 23rd July
by
Raghavendra
• 30
The Question is a variation of pick not pick pattern[DP](Here pick means choose first element and non-pick means choose second element). …
Answer: Microsoft Online Test
by
Gigaliths
• 90
let sum(X) denote subarray sum from [0...X]<br> we need to find pairs [L,R] such that sum[R] - sum[L-1] = (R-L+1)*k.<br> This g…
Answer: BloomReach - SDE 1 ( 1 year Exp ) - Coding Round
by
Gigaliths
• 90
For problem 2 Let dp(i) denote the number of valid subsequences possible of type "abc....s[i]" from [ 0 , i ] It is fairly clear that…
Answer: Question: Google | Coding Round (GOCC) - Set2 | July 2021 GOCC coding-round goog
by
prakhar12dubey
• 50
int solve(vector<vector<int>> &mat){ int m = mat.size(), n = mat[0].size(); int ans = 0; for(int i = m-2; i >= 0; i--)…
Comment: BloomReach - SDE 1 ( 1 year Exp ) - Coding Round
by
mod2
• 760
Problem 2 is exactly same problem that Manas sir taught in his depth session on <b>Subsequence DP</b>!!
Answer: ByteDance | Singapore | SDE Intern | Freshers | 2nd October 2021 singapore sde1
by
garg.6
• 40
def helper(n,dp,kMax): if(dp[n]!=-1): return dp[n] if(n <= 2*kMax): return 1 for i…
Comment: Assessment for Backend Engineer (Growth)-2021 Start - ByteDance Campus Recruitme
by
garg.6
• 40
Question2 : https://leetcode.com/problems/count-binary-substrings/submissions/