I applied through college or university. The process took 4 weeks. I interviewed at Google in Aug 2024
Interview
It was a great experience, it was my first interview but the interviewer was super friendly. I was asked a 2D grid related DSA problem. The interview typically lasted 45-50 minutes.
Other Summer Internship Interview Reviews for Google
I applied online. The process took 3 weeks. I interviewed at Google (Londres, Inglaterra) in Nov 2024
Interview
bit confusing, but very sweet people. didn't do the coding test but got an interview so was a bit confused during the application stage. overall very nice people, very facilitating
Interview questions [1]
Question 1
2 coding questions leet-code easy and medium level difficulty
I recently applied for the Software Engineering Summer Intern 2025 Internship at Google and successfully made it through the first technical round. During this round, I introduced myself and was given a medium-level array problem, which I managed to solve along with its follow-up question. However, I struggled to explain my thought process clearly to the interviewer. While I didn’t progress to the next rounds, the experience reinforced my determination to improve my coding skills and communication abilities for future opportunities.
Interview questions [1]
Question 1
Problem Statement: You are given an array of integers which may be inverted (strictly decreasing). A peak element in an array is defined as an element that is greater than or equal to its neighbors.
Write a function to find a peak element in the array. An element
𝐴
[
𝑖
]
A[i] is considered a peak if:
𝐴
[
𝑖
]
≥
𝐴
[
𝑖
−
1
]
A[i]≥A[i−1] (if
𝑖
>
0
i>0)
𝐴
[
𝑖
]
≥
𝐴
[
𝑖
+
1
]
A[i]≥A[i+1] (if
𝑖
<
𝑛
−
1
i