Salesforce计算机科学面试真题

职位分类
全部
数据相关
计算机科学
人工智能
产品经理
BQ
面试题
全部(78)
OOD(2)
Algorithm(33)
System Design(21)
高频题(0)
Math(1)
全部(78)
OOD(2)
Algorithm(33)
System Design(21)
高频题(0)
Math(1)
1.leetcode678
2.ASCI码翻译
3.判断点是否在三角形内
4.检测两个点在不在三角形内
5.leetcode315
6.寻找有多少对(两个数)元素相加是k
7.找到移动后最大元素的索引
8.Cutting woods
9.leetcode10
10.leetcode173
11.leetcode628
12.判断三点能不能构成三角形
13.Expand a nested array string
14.Design a customer service system
15.Optimal Cutting of Planks
16.Design a Secure Communication Chat Bot Network
17.Browser Networking and Security
18.Characteristics of RESTful APIs
19.System Design Interview Question: eBay Friends Top K Purchase Item
20.LRU and LFU Cache Implementation
21.Coding Interview Question: Flatten Nested Integer Iterator
22.Data Concepts Interview Questions
23.Linux Command Line and System Knowledge
24.Design a YouTube-like Service
25.Ball Rolling Paths in a 2D Array
26.Design an Elevator System
27.What is Java encapsulation?
28.System Design Challenge
29.Debugging Exercise
30.Find the Index of the Maximum Element After Array Rotation
31.Find the Number of Pairs with Sum K
32.Implementing Merge Sort
33.ASCII Code to Character Conversion
34.Point Inside Triangle Determination
35.ASCII Code Translation
36.GET Requests for GIF Images
37.ASCII Encoding Conversion
38.Design a Restaurant Ordering System
39.Serialize and Deserialize Binary Tree
40.Point Inside Triangle Check
41.Triangle Formation Validation
42.ASCII Code Conversion
43.Triangle Validity and Point Inclusion
44.ASCII-Encoded Strings Decoding
45.Technical Questions on Data Structures
46.Designing for Scale with Large Streaming Data
47.Concurrency Handling in a Multi-user System
48.Interval Problem
49.DFS Algorithm Problem
50.Design Twitter Trending Topics System
51.Product of Array Except Self
52.Validate Binary Search Tree
53.Car Fleet Problem
54.Minimum Swaps to Alternate Binary String
55.Merge K Sorted Lists
56.Understanding of Caching
57.Web Page Loading Process
58.Problem Solving Based on a Real-World Scenario
59.Project Deep Dive and Retrospective Analysis
60.Design a Survey Data Analytics Dashboard
61.High-Level System Design for Adding a Feature
62.Implement a Quiz App using React
63.Test Plan for WhatsApp Launch
64.Design a Password Management System
65.Laser Grid Problem Optimization
66.String Transformation Possibility
67.Technical Interview Question
68.Anagram Sentence Variations
69.Count Distinct Numbers in Ranges
70.Minimum Lexicographical Order Word from Sliding Input
71.Convert Numbers to Roman Numerals
72.Standard Topological Sort Problem
73.Design a system based on LeetCode weekly contest problems
74.Design a Job Scheduler for Customer Communication
75.Design an Auto-Complete System
76.LFU Cache Implementation
77.Search Suggestion System
78.Triangle Type Check
1. leetcode678
leetcode678
2. ASCI码翻译
将长串数字转换成字符串(包括英文大小写和空格),每个数字对应不同的字母或者空格
3. 判断点是否在三角形内
给出三个点的坐标,判断是否为三角形,并且给出另外一人点的坐标,判断是否在三角形内
4. 检测两个点在不在三角形内
检测两个点在不在三角形内,要注意的是先判断已知的三个点ABC是否能组成三角形,接着再看点P或点Q在不在三角形内
5. leetcode315
leetcode315