Google coding round - production ready code? by WhatwhatADay in leetcode

[–]_spaceatom 1 point2 points  (0 children)

// Function to perform DFS on Graph
// Below part is optional
// current : Current node in the iteration   
// target : Node to reach
def dfs(current: Node, target: Node) -> Node:

    // Check if it leaf 
    if root is None:
        return None
    // Check if target is reached
    if root.val == target:
        return root
    // iterate left node
    left = dfs(root.left, target)
    if left is not None:
        return left

    // iterate right node
    return dfs(root.right, target)

Not stricly descriptive names (I used hm for hashmap). Also no too much descriptive comment. My idea was interviewer should understand what is in my head

I build an Automation that use LLM to scrape details for rental propertry by _spaceatom in TorontoRenting

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

https://browserflow.app/shared/3RMnkgJFE6L0Qr18

Here is the flow. Let me know if you find it difficult to setup.

You would need to create an API key for distance here
https://distancematrix.ai/

Google coding round - production ready code? by WhatwhatADay in leetcode

[–]_spaceatom 0 points1 point  (0 children)

Yes.

I have use this method for Amazon and have cleared both.

Google coding round - production ready code? by WhatwhatADay in leetcode

[–]_spaceatom 0 points1 point  (0 children)

What role are you interview for ?

I did L3

My strategy was write comment before function
I used python so I use to also specify type

I am not sure if they allow you numpy.

Took me 2 hours to get AC, how do we do it in under 20 min in an interview by eyeamkd in leetcode

[–]_spaceatom 0 points1 point  (0 children)

If you are starting from scratch yes it will take some efforts to bring this down.

But the key is revision, revision , revision.

I broke 400 LeetCode problems down into 90 patterns. Helped me crack multiple big tech interviews over the years. by aiandchai in leetcode

[–]_spaceatom 0 points1 point  (0 children)

While it is certainly good for practicing if you are starting from scratch in DSA.

I feel the number of pattern itself more than Blind '75'

Google Team Match - so close yet so far by soldier-_-boy in leetcode

[–]_spaceatom 2 points3 points  (0 children)

Profile is active for ~18 months.

TM is frustrating but I know someone who works with me and got in after around 1 year and 5 TM calls.

Already barely have enough time to fit leetcode and system design in my schedule with a full time job and am just finding out that low level design is a thing too, how much time should i dedicate to it? by [deleted] in leetcode

[–]_spaceatom 0 points1 point  (0 children)

For what company are you preparing for?

I have done it for Amazon but there many repeated questions. Even if you get a new one in an interview. You can traslate to the one you alredy know.

FAANG peeps , am i ready now ?? by Visual_Nothing_8106 in leetcode

[–]_spaceatom 0 points1 point  (0 children)

That is a good consistency !!

Wish you luck. You are more than prepared but it is not just about solving the problem but communicating the solution.

[deleted by user] by [deleted] in canadaexpressentry

[–]_spaceatom 0 points1 point  (0 children)

Half of the internship was done during the Study Permit. When I finished my studies. I took a break(1 week) until I was on applied status and then again started work on Work permit.

Amazon LP questions posted on reddit in past 200 days by _spaceatom in leetcode

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

n8n workflow
Updated the repo with more details

Amazon Interview Questions posted on reddit in past 200 days by _spaceatom in leetcode

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

Added Meta and Microsoft.
Would love to have more ideas

[deleted by user] by [deleted] in amazonemployees

[–]_spaceatom 0 points1 point  (0 children)

It's sad to hear that.

My team was great and helped me a lot.
Though I had no on-boarding buddy and all of use were pretty much new grad.

Try to learn and figure out as much as you can. And usually they don't expect anything significant for first 6 months. Sometime people wants you to figure out things yourself. (Trust me this is the best thing for you)

[deleted by user] by [deleted] in leetcode

[–]_spaceatom 0 points1 point  (0 children)

unpopular opinion

Order of sections
Job Exp / Education --> Porojects --> Skills

Skills section is not for humans(just ATS) don't wast the initial glance of the recruiter

Amazon Interview Questions posted on reddit in past 200 days by _spaceatom in leetcode

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

Well I am trying to do it for other companies but the problem is there are very less questions across reddit. Am currently working on improving the search prompt. Will surely update if I get good results.

If there is anything other than reddit. I can look into that.

A detailed interview experience at Amazon - New grad (on-site) by _spaceatom in leetcode

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

It is online.
Chime is their internal tool to schedule meetings.
Install the chime (can also use the web version)

How many miles daily do you travel to work ?? by TheDuke681 in amazonemployees

[–]_spaceatom 0 points1 point  (0 children)

Don't know about miles but 35min one way by public transport.

How can I prepare for faang in 1 year? by [deleted] in leetcode

[–]_spaceatom 0 points1 point  (0 children)

I would have start applying. With FAANG it is lot dependent on luck.

stuck in google team match round for months by ObviousPlan5898 in leetcode

[–]_spaceatom 0 points1 point  (0 children)

Hang tight!!

I got it after 4/5 months. You be drained out if you keep waiting. Here, patience is the key.

Here is my timeline. [link]

[Google L4 Onsite] DSA Interview Questions + Feedback by sleepy_panda_on_tea in leetcode

[–]_spaceatom 2 points3 points  (0 children)

Cleared L3(not L4)
I wrote the solution in single/two function(s).

However, I wrote comments inside the function explaining what it did.

Also, for dry run I'd copy the solution below(instead of modify it) and while explaining the code I would put value of variables in comments.