Akuna Capital计算机科学面试真题

职位分类
全部
数据相关
计算机科学
人工智能
产品经理
BQ
面试题
全部(34)
OOD(3)
Algorithm(13)
System Design(8)
高频题(0)
Math(7)
全部(34)
OOD(3)
Algorithm(13)
System Design(8)
高频题(0)
Math(7)
1.2x2 Matrix Multiplication Recall
2.Find the number of zeros at the end of 100!
3.Write a list comprehension to calculate the power of 2 and extend it to calculate the power of 3.
4.Discuss list comprehension in Python and how to implement inheritance.
5.Explain Object-Oriented Programming (OOP) and its benefits, specifically encapsulation.
6.Delivery Order Based on Distance and Priority
7.Minimum Chunks Required for Document Upload
8.Keypad Entry Time Calculation
9.Tangent Line to a Function at a Given Point
10.Counting Numbers Divisible by Specific Integers
11.Linear Transformation Matrix Null Space
12.Count and Say Sequence
13.Implementing a Rate Limiter
14.Locking a Message Buffer
15.Implementing a Timer
16.Concurrency Control with Locking
17.File System Path Count
18.Counting 1 Bits
19.Number of Ending Zeros in 100!
20.Tangent Line to a Function
21.Summation with Exclusions
22.Delivery Management System
23.Document Chunking
24.Frequency Sort
25.Arranging Digits with Multiples or Divisors
26.Delivery Problem Optimization
27.Design a classic rate limiter
28.Implement a multi-type map
29.Delivery Management System
30.Frequency Sorting
31.Bucket Fill
32.Document Chunking
33.Design a Class with Insert and Query Operations
34.Remove Duplicates from an Array
1. 2x2 Matrix Multiplication Recall
You are asked to perform two 2x2 matrix multiplications. Be sure to remember the matrices and the multiplication results, as you will be asked to repeat them later in the interview.
2. Find the number of zeros at the end of 100!
Find the number of zeros at the end of 100! (100 factorial).
3. Write a list comprehension to calculate the power of 2 and extend it to calculate the power of 3.
Write list comprehension to realize Power of 2. How to realize in Power of three?
4. Discuss list comprehension in Python and how to implement inheritance.
What is list comprehension? How to realize inheritance?
5. Explain Object-Oriented Programming (OOP) and its benefits, specifically encapsulation.
What is OOP? What is the benefit of capsulation?