饿了么终于泡出来了

大模型岗,timeline如下:
8.21:投递简历
8.30:一面
9.4:笔试(不是那种统一笔试,是单独视频面试形式的笔试)
9.9:二面+三面
9.12:HR面
10.23:意向书

泡了一个多月,之前看到有佬比我晚面试但是国庆后就oc了,我都以为我淹死在池子里了,没想到居然泡出来了

前脚收到字节感谢信,后脚就收到阿里意向书,真是悲喜交加啊

#饿了么##算法工程师##晒一晒我的offer#
全部评论
来一起上班😋
1 回复 分享
发布于 2024-10-23 17:44 上海
佬请问最后hr面大概问啥啊能讲讲大概吗谢谢
点赞 回复 分享
发布于 2025-04-09 19:21 辽宁
请问笔试有多少道题?
点赞 回复 分享
发布于 2025-01-05 23:55 湖北
盲猜华工er ?
点赞 回复 分享
发布于 2024-10-26 16:59 广东
点赞 回复 分享
发布于 2024-10-24 17:26 四川
base哪的啊佬
点赞 回复 分享
发布于 2024-10-23 17:54 河南

相关推荐

得物、拼多多经常考,倒计时组件1.倒计时组件2.如何实现精确计时(setInterval 1s先就update以前知道写但没考虑到为什么,时间戳同步)// Countdown.jsximport React, { useEffect, useState, useRef } from 'react';/*** props:*  - endAt: number (timestamp ms) 或 Date*  - onFinish?: () => void*  - tickMs?: number (minimal tick granularity, default 1000)*/export default function Countdown({ endAt, onFinish, tickMs = 1000 }) {const endTs = typeof endAt === 'number' ? endAt : endAt.getTime();const [remaining, setRemaining] = useState(Math.max(0, endTs - Date.now()));const mounted = useRef(true);useEffect(() => {mounted.current = true;// initial syncfunction update() {const now = Date.now();const rem = Math.max(0, endTs - now);if (!mounted.current) return;setRemaining(rem);if (rem === 0) {onFinish?.();return;}// Align next update to wall-clock second boundary (or tickMs)const delay = Math.min(tickMs,1000 - (now % 1000) // align to next second for nicer UX);// If <1s left, use requestAnimationFrame for smoothnessif (rem <= 1000) {requestAnimationFrame(update);} else {setTimeout(update, delay);}}update();return () => {mounted.current = false;};}, [endTs, onFinish, tickMs]);const sec = Math.ceil(remaining / 1000);const mm = Math.floor(sec / 60);const ss = sec % 60;return (<div>{mm}:{String(ss).padStart(2, '0')}</div>);}
查看2道真题和解析
点赞 评论 收藏
分享
评论
2
1
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务