全部评论
楼主现在是什么状态呀?我现在官网上的状态是:面试已完成,录用排序中 而且也没有收到短信或者HR的电话!
是一天面了三面吗
如果只有两面,就是被刷了。
楼主什么部门呀
发一下面经吧,楼主
有面筋吗
楼主什么岗位哦
请问楼主什么岗位
正式批都开始了么
许愿华为,

楼主说下手撕的算法题吧
我一面就挂了
泡池成功
许愿一下offer,虽然从来不信这些,要是能拿到秋招就结束了😂
你是怎么感觉的
相关推荐
点赞 评论 收藏
分享
球球与墩墩:这不是前端常考的对象扁平化吗,面试官像是前端出来的
const flattern = (obj) => {
const res = {};
const dfs = (curr, path) => {
if(typeof curr === 'object' && curr !== null) {
const isArray = Array.isArray(curr);
for(let key in curr) {
const newPath = path ? isArray ? `${path}[${key}]` : `${path}.${key}` : key;
dfs(curr[key], newPath);
}
} else {
res[path] = curr
}
}
dfs(obj);
return res;
}
查看3道真题和解析 点赞 评论 收藏
分享
11-13 10:17
门头沟学院 Java 明天不下雨了:小林Coding:https://xiaolincoding.com/
全栈哥:https://www.pdai.tech/
Guide哥:https://javaguide.cn/
秀哥:https://interviewguide.cn/
沉默王二:https://javabetter.cn/home.html
磊哥:https://www.javacn.site/interview/basic/
小傅哥:https://bugstack.cn/
源码哥:https://doocs.github.io/source-code-hunter/#/
各大厂的公众号技术文章和一些经典的书籍
点赞 评论 收藏
分享
