
谷歌 Google 是全球科技巨头,总部位于美国加州,目前有多个 referral 机会!最近 Google Cloud 已恢复部分招聘,年底想跳槽或年后拿完年终奖的同学,赶紧了解内推流程和实习岗位吧。
为什么要内推?
官网投递简历往往石沉大海,内推至少能让 recruiter 过审,而且如果运气好,内推人还会给你面试建议。
Google 内推流程
- 挑选 1–3 个合适职位,找到愿意内推的 Googler。
- Googler 在内部系统提交你的简历、邮箱及内推理由,系统会自动发送内推邮件给你。
- 内推邮件含邀请链接,有效期 30 天,可选最多 3 个全球职位。申请前请确认已满足所有 Minimum Qualifications。
- Googler 可在系统中跟踪你的申请状态,接下来等待 recruiter 联系即可。
FAQ
- Recruiter 多久联系?
视情况而定,最快一周,最慢几周,大多数情况下 recruiter 会告知内推人结果。 - 有新加坡 EP 吗?
有很多 Googler 持有 EP,recruiter 联系后会询问你的签证情况。 - 未获面试机会何时可再申请?
同一职位需等待 90 天;其他职位 30 天后可重新申请。竞争激烈,不要灰心。
Why go for a Google referral?
Submitting your resume directly often yields no response. A referral ensures a recruiter reviews your profile and may offer guidance.
Google Referral Process (English)
- Monitor the careers site and choose up to three suitable roles.
- Ask a Googler to submit your details and referral reason in the internal system.
- You’ll receive an email with a referral link valid for 30 days; select up to three global positions. Ensure you meet all Minimum Qualifications before applying.
- The Googler can track your application; then simply wait for the recruiter to contact you.
FAQ (English)
- How long before a recruiter contacts me?
It varies: from one week to several weeks. Recruiters typically update the referrer on your status. - Is Employment Pass (Singapore) available?
Yes. Many Googlers hold EPs; the recruiter will discuss visa sponsorship if needed. - When can I reapply if I don’t get an interview?
For the same role, wait 90 days; otherwise, you can reapply after 30 days.
Google Intern OA 真题分享
Google OA 使用 CodeSignal 平台,刷 LeetCode Medium 足以应对。以下两道为真实笔试原题。
Online Assessment 1

给定长度为 N 的数组 points
和同样长度的字符串 tokens
,每个位置要么为空(’.’),要么含标记(’T’)。计算总分:
- 每个含标记的单元格得
points[i]
分。 - 每对相邻的两个含标记单元格额外得 1 分。
def solution(points, tokens):
total = 0
n = len(points)
for i in range(n):
if tokens[i] == 'T':
total += points[i]
for i in range(n - 1):
if tokens[i] == 'T' and tokens[i+1] == 'T':
total += 1
return total
Online Assessment 2

给定一个数字数组,按原顺序选出最多三个数字,组成可能的最大数。选出的数字无需相邻。
- 枚举选取 1、2 或 3 位的所有组合。
- 将组合中的数字拼成整数,维护最大值。
from itertools import combinations
def solution(digits):
max_num = 0
for r in range(1, 4):
for combo in combinations(digits, r):
num = int(''.join(map(str, combo)))
max_num = max(max_num, num)
return max_num
Read More
如需 Google 内推、OA 辅助或面试代理,请 联系我们。不过不通过不收费,实力保障通过。