专栏名称: 大数据应用
数据应用学院被评为2016北美Top Data Camp, 是最专业一站式数据科学咨询服务机构,你的数据科学求职咨询专家!
目录
相关文章推荐
大数据与机器学习文摘  ·  DeepSeek ... ·  5 天前  
中国社会科学网  ·  算法共谋的规制与出路 ·  2 天前  
中国社会科学网  ·  算法共谋的规制与出路 ·  2 天前  
人工智能与大数据技术  ·  DeepSeek:那你很懂AI了 ·  3 天前  
51好读  ›  专栏  ›  大数据应用

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

大数据应用  · 公众号  · 大数据  · 2018-01-30 10:16

正文

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

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

Day 184

DS Interview Questions

What is confidence interval?

BA Interview Questions

What will be the output of runif (7)?

LeetCode Questions

Description:

  • Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.

Input: 1->3->5->null 2->4->6->7->null

Output:1->2->3->4->5->6->7->null

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

Day 183 答案揭晓

DS Interview Questions

Is there any limitation of R2?


R-squared cannot determine whether the coefficient estimates and predictions are biased , which is why you must assess the residual plots.


R-squared does not indicate whether a regression model is adequate. You can have a low R-squared value for a good model, or a high R-squared value for a model that does not fit the data.


BA Interview Questions

Which function in R language is used to find out whether the means of 2 groups are equal to each other or not?

t.tests ()


Leetcode Questions

Description:

  • Follow up for "Romove Duplicates"

  • What if duplicates are allowed at most twice?

Input: [1,1,2,2,2,3,3,3]

Output: [1,1,2,2,3,3]







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