回复: 0
跳转到指定楼层
上一主题 下一主题
收起左侧

Modal Technical Screen

🔗
匿名用户-DCDMV  2026-7-14 03:44:02 |倒序浏览

2026(7-9月) 码农类General 本科 全职@modal - 网上海投 - 技术电面  | 😃 Positive 😐 Average | WaitList | 其他

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

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

x
Given a series of questions based on the following:

  • Think out loud — interviewers care more about your reasoning than the perfect answer.
  • Reason from first principles — you won't recognize everything, and that's expected.
  • Be ready to discuss tradeoffs — correctness, performance, edge cases, and what inputs could break the code.
  • Brush up on async/concurrency — systems and concurrency concepts may come up.
  • Get comfortable with order-of-magnitude thinking — memory, compute, and performance at scale, including CPU & memory dynamics.
  • Please refrain from using an AI tools


-----
Asked to determine what a mystery_fn does. It converted integers into human readabl
您好!
本帖隐藏的内容需要积分高于 188 才可浏览
您当前积分为 0。
使用VIP即刻解锁阅读权限或查看其他获取积分的方式
游客,您好!
本帖隐藏的内容需要积分高于 188 才可浏览
您当前积分为 0。
VIP即刻解锁阅读权限查看其他获取积分的方式
Unlock interview details and practice with AI
Curated Interview Questions from Top Companies
n a fair random way).

Use a fixed size array with ten buckets, iterate through and collect the buckets. Then iterate through the buckets and generate the output.

With 100M digits in a compiled language like rust or c++

How long would this take?

The work:
  1. 100M reads        // count buckets
  2. 100M bucket bumps // buckets stay hot in cache
  3. 100M writes       // generate sorted output
复制代码

Memory:
  1. 100M u8 digits     = ~100 MB input
  2. 100M usize digits  = ~800 MB input on 64-bit
  3. output Vec<usize>  = another ~800 MB if using usize
复制代码

for u8
  1. CPU = ~3 GHz
  2. memory bandwidth = ~20-80 GB/s
  3. 100M [i] 1 byte = 100 MB
  4. Counting pass
  5. 100M [/i] 2 cycles / 3GHz  ~= 0.07s
  6. 100M * 8 cycles / 3GHz  ~= 0.27s
  7. Output pass
  8. 100 MB written
  9. 100 MB / 20 GB/s ~= 0.005s
  10. 100 MB / 80 GB/s ~= 0.001s
  11. accounting for loop overhead
  12. counting: ~0.07s-0.27s
  13. output:   ~0.02s-0.15s
  14. total:    ~0.1s-0.5s
复制代码

Also depends on input type. Parsing from strings could take seconds.

评分

参与人数 2大米 +6 收起 理由
t__c___ + 1 谢谢分享!
匿名用户-KYFQE + 5 感谢分享!

查看全部评分


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

本版积分规则

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