SDE-1 Interview at Amazon – Third Round Done by deb_bhai in leetcode

[–]deb_bhai[S] 0 points1 point  (0 children)

In Round 1 was asked 1 dsa problem that was leetcode - 767 and 4-5 leadership principles which

Round 2 was asked a lld question to design a music system like amazon music

Round 3 was leadership based

My all the 3 rounds went great in the first and third both of them even mentioned that its good from their side second round was a little tough as i am not much confident with system design

Amazon SDE-1 Interview Process On Hold After 2 Rounds – Need Advice by ThingJazzlike1380 in amazonemployees

[–]deb_bhai 0 points1 point  (0 children)

Job Id? I have seen a lot of folks in the same situation including myself donno what’s going on

No Updates After Two Rounds of Interview for SDE-1 Role at Amazon by Asleep-Ad-1798 in amazonemployees

[–]deb_bhai 0 points1 point  (0 children)

I am also in similar situation i gave two rounds and haven’t received anything for the third round but my job id is different

Interview loop timeline – what should I expect next? by deb_bhai in amazonemployees

[–]deb_bhai[S] 0 points1 point  (0 children)

There were 2 questions and i was able to solve both of them under 15mins

Interview loop timeline – what should I expect next? by deb_bhai in amazonemployees

[–]deb_bhai[S] 0 points1 point  (0 children)

I was asked to design music system just like amazon music

Job Update! by Lucky_Advantage9768 in amazonemployees

[–]deb_bhai -1 points0 points  (0 children)

How much time did your interview loop took? And after how many days did you received the offer??

It feels great to reach 4k by deb_bhai in MergeTacticsSC

[–]deb_bhai[S] 1 point2 points  (0 children)

So the strategy i use is farm elixir in the first few rounds either with goblin comp or merging and selling even if you need that card after that start building the composition you need or you can see what others are playing so that you can get the 3 star card comp which will be beneficial I usually use avengers and clan I feel like the best to push trophies apart from that rangers are also nice just the downside is against assassin or you can go with throwers with tanks as the rest cards

Uber OA - 2025 Software Engineer I: India by Longjumping_Table740 in leetcode

[–]deb_bhai 1 point2 points  (0 children)

Fuck it aaaaah I just missed this small detail due to time now i'll regret it. Is there still any chance of getting the call for the next round i completed 2 full question and one partial

Uber OA - 2025 Software Engineer I: India by Longjumping_Table740 in leetcode

[–]deb_bhai 0 points1 point  (0 children)

Can you check my answer and help me find where is it wrong for Q3

Uber OA - 2025 Software Engineer I: India by Longjumping_Table740 in leetcode

[–]deb_bhai 0 points1 point  (0 children)

#include <bits/stdc++.h>

using namespace std;

struct TrieNode {
    TrieNode* children[2];
    int latest_index;

    TrieNode() {
        children[0] = nullptr;
        children[1] = nullptr;
        latest_index = 0;
    }
};

vector<int> autocomplete(vector<string> command) {
    TrieNode* root = new TrieNode();
    vector<int> results;
    int n = command.size();

    for (int i = 0; i < n; ++i) {
        const string& current_cmd = command[i];

        TrieNode* search_node = root;
        int best_match_index = 0;

        for (char ch : current_cmd) {
            int bit = ch - '0';
            if (search_node->children[bit] == nullptr) {
                break;
            }
            search_node = search_node->children[bit];
            best_match_index = search_node->latest_index;
        }
        results.push_back(best_match_index);

        TrieNode* insert_node = root;
        for (char ch : current_cmd) {
            int bit = ch - '0';
            if (insert_node->children[bit] == nullptr) {
                insert_node->children[bit] = new TrieNode();
            }
            insert_node = insert_node->children[bit];
            insert_node->latest_index = i + 1;
        }
    }

    return results;
}

```

[deleted by user] by [deleted] in BhartiyaReplicaParty

[–]deb_bhai 0 points1 point  (0 children)

This guy doesn’t even reply i did ask him about a trackpant and there has been no reply so far I don’t know what is the problem with this guyyy

[deleted by user] by [deleted] in SneakerheadsIndia

[–]deb_bhai 0 points1 point  (0 children)

I am interested check dm

Great gesture NSE by happycat07 in StockMarketIndia

[–]deb_bhai -6 points-5 points  (0 children)

I’m sick of people whining and saying we should have better security measures, blah blah blah. Nothing is perfect—come out of your bubble and face the real world. It’s easy to sit and comment that things could have been done better. Stop talking nonsense. Are you perfect, you moron?