📣 Back to School开学季 - VIP通行证5折优惠!蓝莓、Offer多多同步优惠
回复: 4
跳转到指定楼层
上一主题 下一主题
收起左侧

2023 Amazon Summer Intern SDE

🔗
匿名用户-D49DW  2022-11-15 11:54:06 |倒序浏览

2022(7-9月) 码农类General 硕士 实习@amazon - 网上海投 - 技术电面 校园招聘会 在线笔试  | 😐 Neutral 😐 Average | WaitList | 应届毕业生
本帖最后由 匿名 于 2022-11-14 23:10 编辑

求点赞,求按“评分”按钮加大米!不扣自己的大米!
2023 Amazon Summer Intern SDE
Timeline:
Submit: 08/16/2022
OA: 08/29/2022
OA Submit: 09/11/2022
VO Survey: 10/21/2022
VO Survey Recorded: 10/24/2022
VO Comfirm: 11/01/2022
VO Itself: 11/08/2022
asp-offersonboarding at amazon dot com Update Waitlist: 11/14/2022 14:56 EDT; Portal: Under Review

Hello Xxx,

Thank you for the time you have invested in the Amazon recruitment process. We know that juggling school commitments and job interviews is a lot to manage. We’ve identified you as a qualified and talented candidate; however, our planning process is taking longer than expected, so we are unable to offer you a position with Amazon at this time.

Here is what you should know about potential next steps:
·         We may reach out to you if we are able to offer you a position later this year. Because we are still in the midst of our planning process, we cannot confirm when or if we may follow up, nor guarantee that you will be offered a role.
·         If you no longer wish to be considered for this position, please let us know by updating your application status in your candidate portal here or by emailing asp-offersonboarding at amazon dot com directly. We wanted to provide this update because we value your time and your trust. We wish you the best of luck as you continue the school year.

Thank you,

Amazon Student Programs




OA1.1: findMaximumMaximaCount
Amazon has a string of categories of items purchased by a particular customer, each represented as a lowercase English letter. To analyze customer behavior, we define a metric called the MaximaCount of a category. It is the number of indices where the frequency of some category c is maximum among all categories present in the prefix of i.

More elaboratively, MaximaCount of character, char, representing a category is defined as the number of indices 4, such that the frequency of char is maximum in the prefix of the string up to the index i.

Given the string categories, find the maximum MaximaCount among all the categories.

Example
Given categories='bccaaacb', there are three categories [a, b, c].
From the above table (assuming 1-based indexing):
- MaximaCount of a = 4 at indices 5, 6, 7, 8
- MaximaCount of b = 2 at indices 1, 2
- MaximaCount of c = 6 at indices 2, 3, 4, 5, 7, 8

Thus the maximum MaximaCount is 6 for the character c.

Function Description
Complete the function findMaximumMaximaCount in the editor below. The function returns an integer denoting the maximum attainable favourability.

findMaximumMaximaCount has the following parameter:
    string categories: the given string

Returns
    int: the maximum MaximaCount

Constraints
- 1 ≤ |categories| ≤ 10^5
- The string categories consists of lowercase English characters only.

您好!
本帖隐藏的内容需要积分高于 177 才可浏览
您当前积分为 0。
使用VIP即刻解锁阅读权限或查看其他获取积分的方式
游客,您好!
本帖隐藏的内容需要积分高于 177 才可浏览
您当前积分为 0。
VIP即刻解锁阅读权限查看其他获取积分的方式
Unlock interview details and practice with AI
Curated Interview Questions from Top Companies

OA1.2: check_similar_passwords
Amazon would like to enforce a password policy that when a user changes their password, the new password cannot be similar to the current one. To determine whether two passwords are similar, they take the new password, choose a set of indices and change the characters at these indices to the next cyclic character exactly once.

Character 'a' is changed to 'b', 'b' to 'e' and so on, and 'z' changes to a'. The password is said to be similar if after applying the operation, the old password is a subsequence of the new password.

The developers come up with a set of n password change requests, where newPasswords denotes the array of new passwords and oldPasswords denotes the array of old password. For each pair newPasswords] and oldPasswords, return "YES" if the passwords are similar, that is, new Passwords i becomes a subsequence of oldPasswords!! after performing the operations, and "NO" otherwise.

Note: A subsequence is a sequence that can be derived from the given sequence by deleting zero or more elements without changing the order of the remaining elements.

Example

The two lists of passwords are given as newPasswords = ("baacbab", "accdb", "baacba"), and oldPasswords = ('abdbc", "ach", "abb"].

Consider the first pair: newPasswords[0] = "baacbab" and oldPasswords = "abdbc", Change "ac" to "bd" at the 3rd and 4th positions, and "b" to "c" at the last position.

Sample Case 0
newPasswords = ["aaccbbee", "aab"]
oldPasswords = ["bdbf", "aee"]
Output: Yes, No

Sample Case 1
newPasswords = ["aaaa", "bzz"]
oldPasswords = ["bcd", "az"]
Output: No, Yes
您好!
本帖隐藏的内容需要积分高于 177 才可浏览
您当前积分为 0。
使用VIP即刻解锁阅读权限或查看其他获取积分的方式
游客,您好!
本帖隐藏的内容需要积分高于 177 才可浏览
您当前积分为 0。
VIP即刻解锁阅读权限查看其他获取积分的方式
Unlock interview details and practice with AI
Curated Interview Questions from Top Companies


OA1.3 性格测试:希望大家在正式开始前都能准备充分

求点赞,求按“评分”按钮加大米!不扣自己的大米!

补充内容 (2022-11-15 12:34 +8:00):
VO: 1 Hour (Intro 3 mins; BQ 17 mins; Computer Science 30 mins; Reverse BQ 10 mins)

Intro:
1. Interview Dylan
您好!
本帖隐藏的内容需要积分高于 377 才可浏览
您当前积分为 0。
使用VIP即刻解锁阅读权限或查看其他获取积分的方式
游客,您好!
本帖隐藏的内容需要积分高于 377 才可浏览
您当前积分为 0。
VIP即刻解锁阅读权限查看其他获取积分的方式
Unlock interview details and practice with AI
Curated Interview Questions from Top Companies

2. Self Pitch

VO1.1: BQ
BQ1: Challenging Project
    Follow up: 如何成为课内project组长
BQ2: Lack Information & No Time Decision
    Follow up: three new features是否是自己主动提出的
    Follow up: Lack Information的背景原因
BQ3: Out of Responsiblity
    Follow up: Mentor 和 colleague的反馈

VO1.2: No Coding
Question 0: 介绍一个自己最喜欢的sort algo (Quick Sort)
    Interviewer Dylan: "No need to implement right now"(笑)
Question 1: 浏览器中输入www.amazon.com后发生了什么
Question 2: Q1中amazon.com的server后端发生了什么
Question 3: amazon.com的前端发生了什么
Question 4: 谈一谈session
Question 5: 谈一谈token
Question 6, 7, ...

VO1.3: Reverse BQ
- What does a typical day in this intern role look like?
- What are the trainings I will receive if I get hired
- Biggest Challenge in Amazon currently
- Any opportunity to work on different projects?
- Most important Leadership Principle in this intern role: Bias for action
- How to success in this intern role, how to earn Return Offer
- ...


求点赞,求按“评分”按钮加大米!不扣自己的大米!

补充内容 (2022-11-16 16:28 +8:00):
https://docs.google.com/spreadsh ... XvPo/htmlview#gid=0
Waitlist dp汇总

本帖子中包含更多资源

您需要 登录 才可以下载或查看附件。没有帐号?注册账号

x

评分

参与人数 3大米 +32 收起 理由
天际征鸿908520 + 1 给你点个赞!
匿名用户-VWZDE + 30
魯拉拉 + 1 很有用的信息!

查看全部评分


上一篇:tiktok ng oa
下一篇:Whatnot Karat OA
全局:
已加大米,但是我的大米不够,看不全,可否分享我下,我小绿码PJ3188038,谢谢
回复

使用道具 举报

全局:
这些图,是性格测试吗,为什么是中文,难道亚麻的测试系统可以选成中文界面吗
回复

使用道具 举报

地里匿名用户
🔗
匿名用户-D49DW  2023-1-16 23:40:02
天际征鸿908520 发表于 2023-1-16 03:44
这些图,是性格测试吗,为什么是中文,难道亚麻的测试系统可以选成中文界面吗

现在还能收到amazon intern的oa吗?!
回复

使用道具 举报

全局:
天际征鸿908520 发表于 2023-01-16 00:44:46
这些图,是性格测试吗,为什么是中文,难道亚麻的测试系统可以选成中文界面吗
可以的 很多语言
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册账号
隐私提醒:
  • ☑ 禁止发布广告,拉群,贴个人联系方式:找人请去🔗同学同事飞友,拉群请去🔗拉群结伴,广告请去🔗跳蚤市场,和 🔗租房广告|找室友
  • ☑ 论坛内容在发帖 30 分钟内可以编辑,过后则不能删帖。为防止被骚扰甚至人肉,不要公开留微信等联系方式,如有需求请以论坛私信方式发送。
  • ☑ 干货版块可免费使用 🔗超级匿名:面经(美国面经、中国面经、数科面经、PM面经),抖包袱(美国、中国)和录取汇报、定位选校版
  • ☑ 查阅全站 🔗各种匿名方法

本版积分规则

>
快速回复 返回顶部 返回列表