Ho presentato la mia candidatura tramite un selezionatore. La procedura ha richiesto 3 settimane. Ho sostenuto un colloquio presso Palo Alto Networks (Santa Clara, CA) nel mese di mar 2025
Colloquio
1. Hiring manager will interview and will ask technical questions
2. if hiring manager likes, then schedules for next interview,jumps into coding problems. Leet code problems.
3. Prepare well sorting algorithms
Domande di colloquio [1]
Domanda 1
1. Merge sort, bubble sort and string manupulations
Ho presentato la mia candidatura online. Ho sostenuto un colloquio presso Palo Alto Networks (Santa Clara, CA) nel mese di feb 2024
Colloquio
My interview experience with Palo Alto was unprofessional. The interviewer didn't introduce themselves and immediately sent a Codility coding challenge. They insisted on Python, even though I'm primarily a Java developer. The challenge involved encoding strings like this: ['a', 'a', 'b', 'b', 'c', 'c', 'c'] -> ['a', '2', 'b', '2', 'c', '3']."
Domande di colloquio [1]
Domanda 1
if input is chars = ["a","a","b","b","c","c","c"] output should be output = ["a","2","b","2","c","3"] and if the input is like chars = ["a","b","b","c","c","c"] output should be output = ["a","b","2","c","3"] and if the input is like chars = ["a","b","b","c","c","c","c","c","c","c","c","c","c","c","c"] output should be output = ["a","b","2","c","1","2"]...do not use any data structures