<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KVGHS6G" height="0" width="0" style="display:none;visibility:hidden"></iframe>

Salesforce计算机科学面试真题

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