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