offer求比较,猿辅导vs滴滴vs招行卡中心
本人女,本硕是985,然后秋招找的是数据分析岗位,拿到了几个offer,想听听大家的意见,祝大家秋招顺利,都能拿到心仪的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道真题和解析