专栏名称: 大数据应用
数据应用学院被评为2016北美Top Data Camp, 是最专业一站式数据科学咨询服务机构,你的数据科学求职咨询专家!
目录
相关文章推荐
数据派THU  ·  【AAAI2025】TimeDP:通过领域提 ... ·  10 小时前  
天池大数据科研平台  ·  一文漫谈DeepSeek及其背后的核心技术 ·  昨天  
软件定义世界(SDX)  ·  指标数据体系建设分享 ·  2 天前  
CDA数据分析师  ·  2025 CDA数据分析师就业班课程更新通知 ·  3 天前  
艺恩数据  ·  春节档观众满意度亮眼 ... ·  1 周前  
51好读  ›  专栏  ›  大数据应用

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

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

正文

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


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


Day 224


DS Interview Questions

You are working on a time series data set. You manager has asked you to build a high accuracy model. You start with the decision tree algorithm, since you know it works fairly well on all kinds of data. Later, you tried a time series regression model and got higher accuracy than decision tree model. Can this happen? Why?


BA Interview Questions

Why do you think LTV and ‘cost per install’ (CPI) are important in the mobile gaming industry?


LeetCode Questions

    • Description:

      • Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.

    • Input: [1,3,5,6], 5

    • Output: 2

    • Assumptions:

      • assume no duplicates in the array.


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



Day 223 答案揭晓


DS Interview Questions

What’s the difference between a generative and discriminative model?

A generative model will learn categories of data while a discriminative model will simply learn the distinction between different categories of data. Discriminative models will generally outperform generative models on classification tasks.

Reference:

https://stackoverflow.com/questions/879432/what-is-the-difference-between-a-generative-and-discriminative-algorithm


BA Interview Questions

What is the meaning of ‘lifetime value’ (LTV)? What LTV can tell you?

Answer:

Lifetime value is the revenue that a customer will generated for your mobile game during their lifetime, but we cannot sure how long his/her lifetime in this game will be, so we make it as a predicted periodic value.


LTV could be a sign of your business health’s success, a measure of customer’s loyalty and it could also be used for forecasting growth; Moreover, it could determine our marketing budget, it tells you how much you can pay to acquire a customer.


LeetCode Questions

  • Description:

    • Given an array of integers sorted in ascending order, find the starting and ending position of a given target value.

    • Your algorithm’s runtime complexity must be in the order of O(log n).







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