回复: 6
收起左侧

Walmart Karat电面

本楼:   👍  0
0%
0%
0   👎
全局:   4
100%
0%
0

2024(7-9月) 码农类General 硕士 全职@walmartlabs - 网上海投 - 技术电面 视频面试  | 😃 Positive 😐 AveragePass | 在职跳槽

注册一亩三分地论坛,查看更多干货!

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

x
上周做了walmart的karat面试,形式是固定的:
前5分钟自我介绍
10分钟五类题目选两个快问快答,每一类各3道题
最后45分钟coding,基本都是简书里原题,一共三道题,三道题是followup的形式,题干类似,做出一道才会给下一题,45分钟一般能把前两题做完,第三题写一点思路。面试官会在main函数里贴出所有测试数据,需要自己打印出运行结果,所有结果都正确就是通过。

楼主做了两次,由于第一次没好好看题库,第二道coding没跑成功。于是又redo了一次,顺利走
您好!
本帖隐藏的内容需要积分高于 188 才可浏览
您当前积分为 0。
使用VIP即刻解锁阅读权限或查看其他获取积分的方式
游客,您好!
本帖隐藏的内容需要积分高于 188 才可浏览
您当前积分为 0。
VIP即刻解锁阅读权限查看其他获取积分的方式
列的模式后,和给定的模式比较这样做会比较简单一些。
redo这次的题目是badge这道题,前两道题目简书里有,下面是第三道题的题干。这道题没想到什么好思路,当时时间也不多了,随便说了几句。
  1. /*
  2. We want to find employees who badged into our secured room together often. Given an unordered list of names and access times over a single day, find the largest group of people that were in the room together during two or more separate time periods, and the times when they were all present.

  3. John: {(455,enter), (512,exit), (1510, exit)}
  4. ->
  5. John: {{455,512}, {1000, 1510}}
  6. Steve: {{300, 500}}
  7. [John, Steve] : {{455, 500}}

  8. records = [
  9.     ["Curtis", "2", "enter"],
  10.     ["John", "1510", "exit"],
  11.     ["John", "455", "enter"],
  12.     ["John", "512", "exit"],
  13.     ["Jennifer", "715", "exit"],
  14.     ["Steve", "815", "enter"],
  15.     ["John", "930", "enter"],
  16.     ["Steve", "1000", "exit"],
  17.     ["Paul", "1", "enter"],
  18.     ["Angela", "1115", "enter"],
  19.     ["Curtis", "1510", "exit"],
  20.     ["Angela", "2045", "exit"],
  21.     ["Nick", "630", "exit"],
  22.     ["Jennifer", "30", "enter"],
  23.     ["Nick", "30", "enter"],
  24.     ["Paul", "2145", "exit"],
  25.     ["Ben", "457", "enter"],
  26.     ["Ben", "458", "exit"],
  27.     ["Robin", "459", "enter"],
  28.     ["Robin", "500", "exit"]
  29. ]

  30. Expected output:
  31.   Paul, Curtis, and John: 455 to 512, 930 to 1510

  32. For this input data:
  33.   From 455 til 512, the room contains Paul, Curtis and John. Jennifer and Nick are also in the room at this time, and Ben and Robin enter and leave during this time period.
  34.   From 930 til 1510, Paul, Curtis, and John are in the room while Steve and Angela enter and leave, until Curtis leaves at 1510.

  35. The group "Paul, Curtis and John" exists at both of these times, and is the largest group that exists multiple times.

  36. You should note that the group in the expected output is a subset of the people in the room in both cases.

  37. records2 = [
  38.   ["Paul", "1545", "exit"],
  39.   ["Curtis", "1410", "enter"],
  40.   ["Curtis", "222", "enter"],
  41.   ["Curtis", "1630", "exit"],
  42.   ["Paul", "10", "enter"],
  43.   ["Paul", "1410", "enter"],
  44.   ["John", "330", "enter"],
  45.   ["Jennifer", "330", "enter"],
  46.   ["Jennifer", "1410", "exit"],
  47.   ["John", "1410", "exit"],
  48.   ["Curtis", "330", "exit"],
  49.   ["Paul", "330", "exit"],
  50. ]

  51. Expected output:
  52. Curtis, Paul: 222 to 330, 1410 to 1545

  53. All Test Cases:
  54. together(records) => Paul, Curtis, and John: 455 to 512, 930 to 1510
  55. together(records2) => Curtis, Paul: 222 to 330, 1410 to 1545

  56. n: length of the badge records array
  57. */
复制代码
}

评分

参与人数 2大米 +7 收起 理由
spicydog + 2 很有用的信息!
清道神君 + 5 欢迎分享你知道的情况,会给更多大米奖励!

查看全部评分


上一篇:25 Databricks oa | Software Engineering Intern
下一篇:Databricks 2025 SDE summer intern OA
地里匿名用户
匿名用户-EIZDU  2024-9-5 03:18:57
本楼:   👍  0
0%
0%
0   👎
谢谢楼主分享! 我也要面他家。 我注意到简书是2020年的, 现在题库还能覆盖karat吗? walmart家需不需要在leetcode上刷他家的tag题目?谢谢
回复

使用道具 举报

 楼主| slyy 2024-9-5 07:25:43 | 显示全部楼层
本楼:   👍  0
0%
0%
0   👎
全局:   4
100%
0%
0
匿名用户 发表于 2024-9-4 12:18
谢谢楼主分享! 我也要面他家。 我注意到简书是2020年的, 现在题库还能覆盖karat吗? walmart家需不需要在 ...

我两次karat都是简书里原题,我觉得可以优先把简书题目看完。
回复

使用道具 举报

地里匿名用户
匿名用户-EIZDU  7 天前
本楼:   👍  0
0%
0%
0   👎
slyy 发表于 2024-9-4 16:25
我两次karat都是简书里原题,我觉得可以优先把简书题目看完。

谢谢分享! 请问楼主到了下一阶段的面试了么? 面对面的coding 是简书里的题目, 还是leetcode walmart tag的题目呢? leetcode walmart tag的题目很少, 近6个月的也就100多道。 谢谢!
回复

使用道具 举报

 楼主| slyy 7 天前 | 显示全部楼层
本楼:   👍  0
0%
0%
0   👎
全局:   4
100%
0%
0
匿名用户 发表于 2024-9-5 09:15
谢谢分享! 请问楼主到了下一阶段的面试了么? 面对面的coding 是简书里的题目, 还是leetcode walmart t ...

后来组已经招到人了,已经约好的下一阶段面试被取消了,不过看流程,下一阶段是组里的人面试,肯定不是简书里的题目了,面试题目因组而异吧,估计没有题库。
回复

使用道具 举报

地里匿名用户
匿名用户-EIZDU  7 天前
本楼:   👍  0
0%
0%
0   👎
slyy 发表于 2024-9-5 11:26
后来组已经招到人了,已经约好的下一阶段面试被取消了,不过看流程,下一阶段是组里的人面试,肯定不是简 ...

多谢分享! 看来walmart是按组招人呀。 祝好运!
回复

使用道具 举报

巴蒂go 昨天 23:06 | 显示全部楼层
本楼:   👍  0
0%
0%
0   👎
全局:   9
82%
18%
2
最近刚刚店面,是用Hackerrank。
回复

使用道具 举报

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

本版积分规则

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