Ho presentato la mia candidatura tramite un'agenzia di reclutamento personale. La procedura ha richiesto 2 settimane. Ho sostenuto un colloquio presso People Group nel mese di lug 2024
Colloquio
The interviewers asked relevant questions: 2 mid-level difficult coding (if you do LeetCode) and output prediction questions. There was some background(office buzz) noise, making it difficult to hear the interviewer at times.
Domande di colloquio [3]
Domanda 1
1. Rotate a matrix 90 degrees without using any other variable to store the result. Matrix values are random, which means they may or may not be in sorted order. Also, the number of rows can be anything.
eg.
Input
[
[1, 2, 3],
[4, 5, 6],
[7, 8, 9]
]
Expected output:
[
[7, 4, 1],
[8, 5, 2],
[9, 6, 3]
]