Akuna Capital数据相关面试真题

职位分类
全部
数据相关
计算机科学
人工智能
产品经理
BQ
面试题
全部(29)
SQL(0)
Coding(15)
ML basics(2)
Stats(11)
Product Case(0)
高频题(0)
Other(1)
全部(29)
SQL(0)
Coding(15)
ML basics(2)
Stats(11)
Product Case(0)
高频题(0)
Other(1)
1.Titles for the interview questions
2.Interview Questions for Data/Statistics/Mathematics Positions
3.Coding Interview Questions. Coding Interview Questions
4.Understanding Distributed Systems Computing
5.Match Evaluation.
6.Substring Digit Sum Divisible by Length & Array Element Digit Sum
7.Implementing an LRU Cache in Python
8.Find N Smallest Even Integers with Start Integer
9.Data Cleaning for a Dataframe with Two Columns
10.Triangle Inclusion Test: Determining Point Placement.
11.Oscillating String Sorting Algorithm
12.Technical Project Introduction, Derivative Calculation, Eigenvalue of 3x3 Matrix, Join Distribution Probability, Intersection Dimension of Subspaces, Linear Regression Coefficient Range.
13.Title: Finding the Derivative of x^x.
14.1. Comparing String Arrays with Occurrence Counts2. Deactivating Generators with Minimum Models3. Earliest Possible Processing Time in Computing Cluster
15.1. Subsequence Partitioning 2. Autoscale Policy Implementation 3. Parallel Task Processing Time Optimization
16.Block Dropping Probability
17.Coin Flip Game Valuation
18.Interpreting Linear Regression Model Results
19.Expected Value of the Square of a Sum of Random Variables
20.Expected Probability of Getting Wet
21.Expected Number of Flips to Get Two Heads in a Row
22.Poisson Distribution
23.Linear Regression Concept
24.Expectation Value of Tossing a Fair Coin
25.Substring Division by Key Press Sum
26.Sort Array by Frequency and Value
27.Calculating Profit/Loss from Betting on Letter Pairs
28.Extraordinary Substrings
29.Frequency Sort
1. Titles for the interview questions
1. BQ greatest achievement
2. 求和1 to 100, 去掉带7和8的数字
3. 两个standard normal, X, Y,问哪个说法是错的。关于independent, E(X^2*Y^2)之类的
4. 矩阵A^2=A,问一些性质,invertible,(l-A),eigenvalue什么的
5. 给个joint PDF,求P(Y
6. 积分 1 /(x*In x)
2. Interview Questions for Data/Statistics/Mathematics Positions
What was your biggest project and what were the challenges? How did you tackle them?
Is X+Y a normal distribution? Are X+Y and X-Y independent? Is E(X^2Y^2) = 1? Is E(X^2/Y^2) = 1?
If a and b are n x n matrices, does tr(AB) = tr(BA) and det(AB) = det(BA)? What are some other matrix properties such as rank?
If X and Y are standard normal distributions, what is the probability that the middle number is less than 2/3?
How many numbers exist between 1 and 5050 that do not contain the digits 7 or 8?
Note: Some irrelevant information and incomplete sentences have been removed.
3. Coding Interview Questions. Coding Interview Questions
1. Given the initial setup of a match between two players, evaluate the match's outcome for n rounds. Each round, a player removes the first number from the sequence and adds its value to their score. After that, if the removed number is even, the remaining sequence is reversed. Determine the difference in scores between the two players after the game.
2. Find a substring of a given string consisting of '0's and '1's such that the number of '1's in the substring is equal to a given integer k, the substring has the smallest length, and it is lexicographically smallest.
3. Form a special sequence using words and numbers based on certain rules and find the value in the sequence at a given position. Return the sum of the digits of the value.
Note: Separate each question with "
4. Understanding Distributed Systems Computing
1. What is Distributed Systems Computing?
2. What is AWS?
3. What are some Protein/ DNA related questions?
4. What is Sequential data?
5. Match Evaluation.
Match Outcomes. Given the initial setup of a match between two players, evaluate the match's outcome. There are two players, and there is a number sequence of size n. The first player picks the first number from the sequence and adds its value to their store. Players alternate turns for a round. Each round, a player removes the first number from the sequence and adds its value to their store. After that, if the removed number is even, the remaining sequence is reversed. Determine the difference in scores between the two players after the game.
K Smallest Substring. There is a string input, consisting of characters '0' and '1' and an integer k. Find a substring of string input_str such that the number of '1's is equal to k, it has the smallest length and it is lexicographically smallest. It is guaranteed that the answer always exists.
Document Chunking. Not enough information provided.
Note: The last question was not included in the raw text provided.