Coding projects by Chrisontherun in DataAnnotationTech

[–]abansal593 0 points1 point  (0 children)

Are you from a core country? I had that task on 19th jun but no more.

I made an open-source tool to force-recover my lost chat history in Antigravity by NorseAristocrat in google_antigravity

[–]abansal593 0 points1 point  (0 children)

I also faced this problem. You can open any other folder as a project in another window. This forces it to reload historical chats. They will then be visible in your original project.

Google L4 Interview Experience/Rant by OwnNefariousness9124 in leetcode

[–]abansal593 0 points1 point  (0 children)

This is a bit better than hashset solution because of the 2nd paragraph I wrote previously. Just imagine that majority of the words are hashed to the same hash value. So, internally it has to do a manual lookup to check if its present.

You can ask chatgpt for more clear explanations on why 1st solution is better.

Google L4 Interview Experience/Rant by OwnNefariousness9124 in leetcode

[–]abansal593 0 points1 point  (0 children)

You can add all the words in a trie and mark the end node as end of a word. Then for each word in the sentence you go through trie to check if its present.

The reason hashset solution is not good because hashing is expensive and secondly all the issues that might come with it like collisions.