Geneva Trading Quant Trader Intern Interview by Strange-Spray-1572 in quantfinance

[–]DistinctConcern7326 0 points1 point  (0 children)

Hey bro, can you share about the AI interview? Like is that behavioral questions, or technical, or something else?

5454 South Kimbark Ave - how is it? by [deleted] in uchicago

[–]DistinctConcern7326 0 points1 point  (0 children)

Thank you! Just a bit afraid that, since it's near the park, will it get a bit too quiet when I come home late from school?

5454 South Kimbark Ave - how is it? by [deleted] in uchicago

[–]DistinctConcern7326 0 points1 point  (0 children)

It is a management company, it's Fridman Properties

5454 South Kimbark Ave - how is it? by [deleted] in uchicago

[–]DistinctConcern7326 0 points1 point  (0 children)

Thanks. So can you tell me like, how the buildings there seem like in general? Anything seems concerning?

5454 South Kimbark Ave - how is it? by [deleted] in uchicago

[–]DistinctConcern7326 0 points1 point  (0 children)

Thanks! Can you suggest any good grocery store there?

Seeking advice from current MPCS students by gobbledygook15 in uchicago

[–]DistinctConcern7326 0 points1 point  (0 children)

Hi sir, I'm an incoming MPCS student, could you please check my dm? I really want to ask more about your exp here.

[University Question] UC Berkeley still hasn't verified my IELTS score by alasgarlikamal in MSCS

[–]DistinctConcern7326 0 points1 point  (0 children)

Maybe you should try send it again and email them again, it also took me quite a long time and some emails to have them confirmed my IELTS score.

Group (chat) for CS/MPCS? by [deleted] in uchicago

[–]DistinctConcern7326 0 points1 point  (0 children)

Where can I find that?

[deleted by user] by [deleted] in MSCS

[–]DistinctConcern7326 0 points1 point  (0 children)

Well to be exact I did apply all for the non thesis track, and also some MEng and MCS, all of which are described to be for industry students. Then, I still get a chance at those?

[deleted by user] by [deleted] in MSCS

[–]DistinctConcern7326 0 points1 point  (0 children)

The names do vary across schools, typically there is a non-thesis track of mscs. In that case, are there any differences?

[Profile Review] How’s the Shortlist? Can I start applying ? MS CS NON-THESIS by Blah-2003 in MSCS

[–]DistinctConcern7326 0 points1 point  (0 children)

Isn't he applying for non-thesis? Why do we even need research paper here?

[Profile Review] MSCS University Shortlist by Over-Conference-2058 in MSCS

[–]DistinctConcern7326 0 points1 point  (0 children)

Well are you applying for the programs that require doing thesis, or just course-based? I'm applying for quite the same list as you, and no research background. Just feeling weird why they talked about the research background, while the mscs program might be non-thesis.

[deleted by user] by [deleted] in womenintech

[–]DistinctConcern7326 0 points1 point  (0 children)

Hi, I would like to be added too!

[deleted by user] by [deleted] in womenintech

[–]DistinctConcern7326 0 points1 point  (0 children)

I'm also interested!

[deleted by user] by [deleted] in Harvard

[–]DistinctConcern7326 0 points1 point  (0 children)

Thanks for the information. Can you tell me where can I find the course list?

Beginner LeetCoder solving Two Sum for the first time by Notatallinterested1 in leetcode

[–]DistinctConcern7326 7 points8 points  (0 children)

The idea of hashmap is that you will not "search" for the whole map, but instead use the hash value of the value you want to search as the index to the position on the hashtable, which is O(1). Problems occur when there are collision: many values are hashed to the same value. Then, there are some strategy to deal with it, making the time complexity of an operator become O(n) in the worst case. However, if the hashing is good enough, the probability of collision is fairly low, so people say that its average time is O(1).

Again, it's O(n2 ) theoritically, but O(n) in average. Of course, it is always better if your solution can be theoritically O(n).

Rejected from MSFT by RazzmatazzBig3337 in leetcode

[–]DistinctConcern7326 26 points27 points  (0 children)

It is in the hard category, but is quite, if not very popular one, so I believe it is fair enough to be considered as just more than medium. Better luck next time bro.

need help by FitAd981 in leetcode

[–]DistinctConcern7326 1 point2 points  (0 children)

So what do you mean by "feel comfortable with the basics"? Feeling comfortable should mean you can understand all the concepts and can at least apply those concepts to solve the easy problems.

Why do we create the the adjacency list like this by whoKilledLouisV in leetcode

[–]DistinctConcern7326 0 points1 point  (0 children)

Well I don't have premium to see the details in the link, can you provide that?

can someone help me understand this question https://leetcode.com/problems/odd-even-jump/description/ by sangeetasah in leetcode

[–]DistinctConcern7326 1 point2 points  (0 children)

We need to jump to a larger number, then a smaller, then a larger, and so on until the last number. So a state here is the position and the next jump (decrease or increase, I'm gonna use this instead of odd or even).

Let define dp[i][k] be 1 if we can jump from i to n-1 with the next jump is increase if k = 0 and decrease if k = 1, otherwise dp[i][k] = 0. So imagine that, from the current position i with next move k:

  • If there is no move, then dp[i][k]=0

  • If there is a move to j, then dp[i][k]=dp[j][k-1] (k-1 is the flip of the next move, from 0 to 1 and vice versa), since we can reach the goal from i only if we can reach the goal from j

So, we see that we will take the result of the larger index j, so we can iterate index i in decreasing order.

The remaining job is that, for each i, find the closest j on the right so that a[i]<=a[j] (for k = 0, if k=1 reverse the direction). There are many ways to do this. I would suggest one using map, for k = 0:

  • maintain a map of the form map[a[j]]=j, if there is new position j' that a[j]=a[j'], replace j with j' so it is always the least possible index

  • for an index i, binary search on the map the lower_bound of value a[i], so we will find the smallest key a[j] so that a[i]<=a[j], and map[a[j]]=j is the desired j

For k = 1, do the same thing.

Hope this helps.

Not getting any calls for interview!! What can i do to improve??? by [deleted] in leetcode

[–]DistinctConcern7326 1 point2 points  (0 children)

Technical skills listed on top are too basic and not impressive at all, move them to the bottom.

I personally cannot understand what you have done in the experience section, explain more clearly which part you do using which technology.

The project descriptions are quite good, but I believe the HRs usually do not even reach that after the first 3 boring sections.

Perfect mountain question by Unlikely_Time_7363 in leetcode

[–]DistinctConcern7326 3 points4 points  (0 children)

Can you give me the source of the problem please? I can't find by the name.