饿了么-秋招-timeline

9.4     ld终面
9.11    hr面
9.13   录取意向
全部评论
一轮技术面嘛
1 回复 分享
发布于 2025-09-19 23:24 北京
佬 一面之后多久出结果呀 一面之后还没有结果
点赞 回复 分享
发布于 2025-09-19 10:05 湖北
佬 为什么只有一面啊
点赞 回复 分享
发布于 2025-12-16 16:12 上海
佬 问下hr面完后官网的状态会变成等待面试结果吗
点赞 回复 分享
发布于 2025-09-22 17:08 江苏
佬,可以问下是后端还是前端吗?
点赞 回复 分享
发布于 2025-09-22 09:40 湖北
佬,怎么知道二面是技术面还是hr面呀?
点赞 回复 分享
发布于 2025-09-22 09:38 湖北
佬 什么岗呀,有手撕吗?
点赞 回复 分享
发布于 2025-09-20 09:27 湖北

相关推荐

得物、拼多多经常考,倒计时组件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道真题和解析
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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