pdd实习内推码,需要自取
#牛客AI配图神器#人在主站,作息规律
【拼多多集团-PDD实习生招聘】内推链接:https://careers.pddglobalhr.com/campus/intern?t=pwzmEuqsTp,内推码:pwzmEuqsTp。期待你的加入!我们一起,无拼不青春!(通过此链接投递计入内推,内推简历优先筛选~)
【拼多多集团-PDD实习生招聘】内推链接:https://careers.pddglobalhr.com/campus/intern?t=pwzmEuqsTp,内推码:pwzmEuqsTp。期待你的加入!我们一起,无拼不青春!(通过此链接投递计入内推,内推简历优先筛选~)
全部评论
相关推荐
说又不是不能用的:之前也想回老家,结果发现除了考公和靠关系的工作,根本没适合的岗位,省会合肥的竞争比北上广还卷,最后还是认清现实:普通人想赚钱,只能去大城市😭 点赞 评论 收藏
分享
查看11道真题和解析 点赞 评论 收藏
分享
球球与墩墩:这不是前端常考的对象扁平化吗,面试官像是前端出来的
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道真题和解析 点赞 评论 收藏
分享
点赞 评论 收藏
分享
