Panda Guru LogoPanda
Guru

Leetcode judge is wrong

Round 1

Questions: Specific question not provided.

Follow-up Question

Candidate's Approach

The candidate demonstrated two implementations of the Two Sum problem. The first code uses a large vector initialized with a size of 1e8, which may lead to excessive memory usage and potential time limit exceeded (TLE) errors when submitted together with other solutions. The second code is more efficient as it does not allocate such a large vector.

Interviewer's Feedback

No feedback provided.