Stripe面试 | 面试作弊 | 代面试 | 面经分享 | VO辅助 |全流程解析:内附独家真题分享

Stripe 的面试相对比较固定,不管是从模式还是从题目上都比较死,今天分享一下 Stripe 面试 都有哪些流程,考察什么题目,感兴趣的同学接着往下看吧~

Stripe 面试 | 面试作弊 | 代面试 | 面经分享 | VO辅助 |全流程解析

第一轮–普通 coding 轮

并非是 LC 的题目,而是一个可能会真实出现的 user case,然后会给你不同阶段循序渐进去解答。我面到的是一道 print notification 的题目。会给你一些人从一个时间点开始办理 membership,然后你需要在开始的时候,倒数 15 天的时候和最后的时候答应出相应的 notification,然后 follow up 是如果有个人在某个时间段更改了他的 membership,你也需要更新相应的 notification,并且删除已经过时的 notification。

Coding 真题分享

Coding1

Given an input and a replacement list. You need to replace the content in sourceCode according to the given replacement requirements and ensure the output is correct.

sourceCode = "num foo;"
replacements = [
    { "start": 0, "before": "num", "after": "String" },
    { "start": 4, "before": "foo", "after": "bar" }
]

Output: “String bar;”

Coding2

Given a binary array nums and an integer k, return the maximum number of consecutive 1s in the array if you can flip at most k 0s.

  • Input: nums = [1,1,1,0,0,0,1,1,1,1,0], k = 2
  • Output: 6
  • Explanation: [1,1,1,0,0,1,1,1,1,1,1] – 2 zeros flipped to ones; the longest sub-array has length 6.

第二轮–Integration

给你一个 API endpoint 然后给你两个 JSON 文件,让你重新发 request 并且纠正预期 response 和实际 response 不一致的情况。

第三轮–Debugging

这是 Stripe 面试当中最特殊的一轮。他会给你一个开源 repo 并指出一个 issue。你需要根据这个 issue 找到问题并修改代码。选 Python 的话通常是查看 request 和 marko 两个 repo。没有提前准备的话很容易挂。

第四轮–系统设计

SD 轮与其他公司差不多,题目常见且偏正规,正常准备即可。

第五轮–Hiring Manager 面

基本全部是 BQ,准备好故事就能过。

总体来看,Stripe 题目固定,表现要非常好才能过。若感到孤军奋战不易,可联系 programhelp 团队,我们提供专业面试辅助与代面试服务,承诺每个环节亲力亲为。

author avatar
azn7u2@gmail.com
正文完
 0
评论(没有评论)