Lowes India Hiring Codeathon

I also have that question. And actually I appeared for the both and got a rejection mail yesterday evening (no post was mentioned there) …Is is for both or for associate engineer only. It would be helpful if you guys who have got any mail yesterday please clear this out. Did you also get the mails like that ?(*no position mentioned for which we got rejected)

For graph question, u can use bridges and dp to find the answer for each component sum can be calculated using dp…

  1. If we know answers for children of a node then we can calculate its answer as,
    (ans_child1+1) * (ans_child2+1) * …

Code -

#define MOD 1000000007
int dfs(int s,vector<int> adj[],vector<bool> &vis){
    vis[s] = true;
    long long ans = 1LL;
    for(auto u:adj[s]){
        if(!vis[u]){
            ans = (ans*(dfs(u,adj,vis)+1))%MOD;
        }
    }
    return ans;
}

they announced results for analyst I guess my friend attempted MCQ round and went well he not perfomed well means 0/2 in round two he got selected for interviews
I guess they hired for analyst may be .And he is not from iit or nit either .But have work experience so may be that must have got counted

1 Like

Anyone who received the offer?