专栏名称: 大数据应用
数据应用学院被评为2016北美Top Data Camp, 是最专业一站式数据科学咨询服务机构,你的数据科学求职咨询专家!
目录
相关文章推荐
数据派THU  ·  多智能体协作机制:大语言模型综述 ·  昨天  
大数据文摘  ·  对于那些出来卖的DeepSeek课程,我有些 ... ·  昨天  
数据派THU  ·  从谱范数梯度到新式权重衰减的思考 ·  2 天前  
CDA数据分析师  ·  2025 CDA数据分析师就业班课程更新通知 ·  3 天前  
软件定义世界(SDX)  ·  清华出品!104页DeepSeek从入门到精 ... ·  4 天前  
51好读  ›  专栏  ›  大数据应用

每日一练 | Data Scientist & Business Analyst & Leetcode 面试题 326

大数据应用  · 公众号  · 大数据  · 2018-04-03 09:35

正文

自2017年6月15日起,数据应用学院与你一起温习数据科学(DS)和商业分析(BA)领域常见的面试问题。从2017年10月4号起,每天再为大家分享一道Leetcode算法题。


希望积极寻求相关领域工作的你每天关注我们的问题并且与我们一起思考,我们将会在第二天给出答案。


Day 226


DS Interview Questions

What is the difference between stochastic gradient descent (SGD) and gradient descent (GD)?


BA Interview Questions

R Programming: What are six types of atomic vector?


LeetCode Questions

    Description:


    • The count-and-say sequence is the sequence of integers with the first five terms as following:

    • 1 is read off as “one 1” or 11.

    • 11 is read off as “two 1s” or 21.

    • 21 is read off as “one 2, then one 1” or 1211.

    • Given an integer n, generate the nth term of the count-and-say sequence.

    • Note: Each term of the sequence of integers will be represented as a string.

    Input: 4

    Output: “1211”


欲知答案如何?请见下期分解!



Day 225 答案揭晓


DS Interview Questions

While working on a data set, how do you select important variables? Explain your methods.


  • Remove the correlated variables prior to selecting important variables

  • Use linear regression and select variables based on p values

  • Use Forward Selection, Backward Selection, Stepwise Selection

  • Use Random Forest, Xgboost and plot variable importance chart

  • Measure information gain for the available set of features and select top n features accordingly.


BA Interview Questions

What is CPI in the mobile gaming industry?


The CPI is how much we spend on advertising to acquire a consumer for downloading and installing a mobile game app, which is a indicator on whether or nor it make sense to invest in mobile game app install advertisements and other customer acquisition campaigns.

If it cost less, which implies your customer would generate amount of revenue; if it cost high, which suggests marketers should get a new way to increase retention, ARPU(Average Revenue Per User), and referrals from existing customers


LeetCode Questions







请到「今天看啥」查看全文