Roblox数据相关面试真题

职位分类
全部
数据相关
计算机科学
人工智能
产品经理
BQ
面试题
全部(29)
SQL(1)
Coding(12)
ML basics(0)
Stats(7)
Product Case(9)
高频题(1)
Other(0)
全部(29)
SQL(1)
Coding(12)
ML basics(0)
Stats(7)
Product Case(9)
高频题(1)
Other(0)
1.Priority判断
2.流失用户的召回
3.List中的重复数字
4.寻找配对
5.Jump Game
6.leetcode269
7.Maximum Length of Repeated Subarray
8.Subdomain Visit Count
9.可视化分析
10.Grid和MaxSum
11.物品重量
12.Grid和maxSum
13.Logistics thinking
14.最多能拿的重量
15.Construction management
16.Correlation=1
17.Confounding factor
18.外卖公司metric突然下降
19.如何介绍Roblox
20.Revenue上涨20%
21.Recommending friend
22.让玩家aging up
23.Last status
24.D30 retention rate
25.Invoice table
26.Price table
27.新游戏matching algorithm
28.SQL Query Output
29.T-Test Implementation
1. Priority判断
如果要设计一个发送notification的system,同时有几个product,怎么判断priority
2. 流失用户的召回
想要通过发送“提醒回来继续玩游戏“的邮件来赢回user,怎么判断应该多久之后发,怎么判断这个是否成功的赢回了user
3. List中的重复数字
找出list中第一个重复一次的数
4. 寻找配对
[(1,left,red),(2,left,black),(3,right,black)],返回left和right配对的element,[(2,3)]
5. Jump Game
You are given an integer array nums. You are initially positioned at the array's first index, and each element in the array represents your maximum jump length at that position.
Return true if you can reach the last index, or false otherwise.