<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KVGHS6G" height="0" width="0" style="display:none;visibility:hidden"></iframe>

Twosigma数据相关面试真题

职位分类
全部
数据相关
计算机科学
人工智能
产品经理
BQ
面试题
全部(24)
SQL(0)
Coding(6)
ML basics(5)
Stats(7)
Product Case(3)
高频题(0)
Other(2)
全部(24)
SQL(0)
Coding(6)
ML basics(5)
Stats(7)
Product Case(3)
高频题(0)
Other(2)
1.Stock Market
2.Merge Intervals
3.预测销量
4.Rectangle Area
5.Daily Temperatures
6.X(N)
7.Longest Substring Without Repeating Characters
8.重复寻找
9.特征转换
10.Pricing
11.Predict housing price
12.你愿不愿意take一个legacy system
13.Data Analysis Case Question
14.Data Analysis Warm Up Question
15.Survivor in a Killing Sequence
16.Correlation Change in Duplicated Dataset
17.Random Walk Hitting Time Problem
18.Covariance Calculation
19.Conditional Probability Calculation
20.Statistical Expectation Problem
21.Simulation Problems
22.Linear Regression and Correlation
23.Linear Minimum Mean Square Error Estimation
24.NYU City Bike Feature Selection
1. Stock Market
如何用data predict stock market
2. Merge Intervals
Given an array of intervals where intervals[i] = [starti, endi], merge all overlapping intervals, and return an array of the non-overlapping intervals that cover all the intervals in the input.
3. 预测销量
怎么用search data (url之类的)来预测各大电商的销售额
4. Rectangle Area
Given the coordinates of two rectilinear rectangles in a 2D plane, return the total area covered by the two rectangles.
The first rectangle is defined by its bottom-left corner (ax1, ay1) and its top-right corner (ax2, ay2).
The second rectangle is defined by its bottom-left corner (bx1, by1) and its top-right corner (bx2, by2).
5. Daily Temperatures
Given an array of integers temperatures represents the daily temperatures, return an array answer such that answer[i] is the number of days you have to wait after the ith day to get a warmer temperature. If there is no future day for which this is possible, keep answer[i] == 0 instead.