Akuna Capital数据相关面试真题

职位分类
全部
数据相关
计算机科学
人工智能
产品经理
BQ
面试题
全部(39)
SQL(0)
Coding(21)
ML basics(2)
Stats(12)
Product Case(0)
高频题(0)
Other(1)
全部(39)
SQL(0)
Coding(21)
ML basics(2)
Stats(12)
Product Case(0)
高频题(0)
Other(1)
1.Interview Questions for Data/Statistics/Mathematics Positions
2.Coding Interview Questions. Coding Interview Questions
3.Understanding Distributed Systems Computing
4.Match Evaluation.
5.Substring Digit Sum Divisible by Length & Array Element Digit Sum
6.Implementing an LRU Cache in Python
7.Titles for the interview questions
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.Combinations of Market Making Teams
17.Sum of Numbers Excluding Digits 7 and 8
18.Expected Number of Coin Tosses to Get Two Consecutive Heads
19.Laser Grid
20.Document Chunking
21.Frequency Sort
22.Stock Transactions Profit Calculation
23.Sorting Monarchs by Name and Reign
24.Card Game Scoring Algorithm
25.Extraordinary Substrings
26.Block Dropping Probability
27.Coin Flip Game Valuation
28.Interpreting Linear Regression Model Results
29.Expected Value of the Square of a Sum of Random Variables
30.Expected Probability of Getting Wet
31.Expected Number of Flips to Get Two Heads in a Row
32.Poisson Distribution
33.Linear Regression Concept
34.Expectation Value of Tossing a Fair Coin
35.Substring Division by Key Press Sum
36.Sort Array by Frequency and Value
37.Calculating Profit/Loss from Betting on Letter Pairs
38.Extraordinary Substrings
39.Frequency Sort
1. 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.
2. 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 "
3. 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?
4. 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.
5. Substring Digit Sum Divisible by Length & Array Element Digit Sum
Input: a string: output:所有substring中,求每个字符对应电话本数码 (类似拨号键盘
那个页面,ABC对应1,DEF对应2等等)之和可以整除该substring长度的substring数量
Input:一个int array,output:以input中元素为index的数字各数位之和 如:input 1,4 (则数字为1,1211),output: 1,5