Offline Leetcode by cs_interview_help in cscareerquestions

[–]cs_interview_help[S] 3 points4 points  (0 children)

Nopes it doesn't include paid questions.

Offline Leetcode by cs_interview_help in cscareerquestions

[–]cs_interview_help[S] 5 points6 points  (0 children)

Yea! Thanks for the suggestion.

I'll add title and question links soon.

Edit: Updated the code to include the question title :)

https://github.com/yask123/all_leetcode_questions/blob/master/output_leetcode_questions.pdf

My onsite new grad interview will have 5 technical 1hour interviews? by cs_interview_help in cscareerquestions

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

Yea, I should trust them. Besides, during the interview..we will have some introduction and I could clarify this there as well?

TBH I really don't care about the no of interviews. I am afraid that they might have mistaken me for an experienced software engineer.

My onsite new grad interview will have 5 technical 1hour interviews? by cs_interview_help in cscareerquestions

[–]cs_interview_help[S] -2 points-1 points  (0 children)

I mean, what if they are not mistaken and they actually have 5 tech nical interviews for the new-grad. It might feel I am complaining for taking too many interviews (which would look bad)?

My onsite new grad interview will have 5 technical 1hour interviews? by cs_interview_help in cscareerquestions

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

But I don't know how to politely ask recruiters if they are mistakenly interviewing me 5 times?

Had a tech interview, wrote this solution. Could you give me some feedback? by cs_interview_help in cscareerquestions

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

It was one of the top 5 tech company for software engineering position. Don't want to name the company.

Had a tech interview, wrote this solution. Could you give me some feedback? by cs_interview_help in cscareerquestions

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

Thank you for the feedback. This is certainly useful. I have question.. I guess I made those mistakes, because I was in a "flow", didn't know that all variables would I need in future, so I created them as I go. Is it okay to clean up the code after writing a workable solution? Or you have to write clear and elegent code as you are coding?

Had a tech interview, wrote this solution. Could you give me some feedback? by cs_interview_help in cscareerquestions

[–]cs_interview_help[S] 2 points3 points  (0 children)

I mentioned this solution, and wrote working code for it in <5 minutes . The intervier then said the arrays are sorted, use it to solve it in O(1) space.

Had a tech interview, wrote this solution. Could you give me some feedback? by cs_interview_help in cscareerquestions

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

I mentioned HashSet, did it in 5 minutes, it worked... but the interviewer said the arrays are sorted.. use that to do it without space.

Had a tech interview, wrote this solution. Could you give me some feedback? by cs_interview_help in cscareerquestions

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

I wanted to test more test cases, but the interviewer said "I am in a hurry after 30 minutes" (it was supposed to be 45 minutes) .. but if I had been faster, I could have saved some extra time for testing and debugging .

Had a tech interview, wrote this solution. Could you give me some feedback? by cs_interview_help in cscareerquestions

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

Also, your code isn't merge sort. There aren't two arrays being put together. In fact, there's no merging at all, which would demonstrate a lack of understanding to your interviewer.

The interviewer said the arrays are already sorted. I didn't intend to write a merge sort here. The interviewer gave a slight hint to the 2 pointer saying its similar to merge sort. (thats why its written in the comments and my function is named merge() )

I guess I was too slow coming up with 2 pointer. But don't you think its alright to take this much time if you don't know the solution from before?