
程序员英语面试
文章平均质量分 90
程序员英语leetcode
蜉蝣之翼❉
这个作者很懒,什么都没留下…
展开
-
用英语学英语
直接阅读和使用自己感兴趣的英语材料,比如阅读原版it书籍。遇到不懂的地方,直接用英语和AI 交流,下面是一些提问方式。原创 2025-04-02 15:16:53 · 786 阅读 · 1 评论 -
如何阅读英文文献
在写作中,逻辑不仅是内容的组织方式,也影响到语言的使用和结构的选择。通过有效运用这些逻辑,作者可以提高写作的清晰度、说服力和逻辑性,帮助读者更好地理解所表达的思想。如果你对某个特定的逻辑类型或写作方式有更多的兴趣,欢迎随时向我询问!以下是对段落结构的详细解释及如何更好地阅读英语的建议。通过理解段落结构和采用有效的阅读策略,你可以在阅读英语文献时,提高效率并加深对内容的理解。通过上述方法,你可以在阅读英语文献时提升效率和理解力。句子与句子之间的关系在写作和阅读中非常重要,因为它们有助于传达清晰的思路和逻辑。原创 2025-01-23 11:13:38 · 690 阅读 · 0 评论 -
206. Reverse Linked List
【代码】206. Reverse Linked List。原创 2024-03-06 22:04:37 · 559 阅读 · 0 评论 -
27. Remove Element
【代码】27. Remove Element。原创 2024-02-26 09:53:42 · 956 阅读 · 0 评论 -
169. Majority Element
Given an array nums of size n, return the majority element.The majority element is the element that appears more than ⌊n / 2⌋ times. You may assume that the majority element always exists in the array.Example 1:Input: nums = [3,2,3]Output: 3Example 2:Inp原创 2024-02-04 15:07:22 · 1073 阅读 · 0 评论 -
leetcode 2446. Determine if Two Events Have Conflict
You are given two arrays of strings that represent two inclusive events that happened on the same day, event1 and event2, where:event1 = [startTime1, endTime1] andevent2 = [startTime2, endTime2].Event times are valid 24 hours format in the form of HH:MM.原创 2024-01-31 14:15:38 · 1298 阅读 · 0 评论 -
452. Minimum Number of Arrows to Burst Balloons
【代码】452. Minimum Number of Arrows to Burst Balloons。原创 2024-01-22 17:10:05 · 1009 阅读 · 0 评论 -
leetcodev 435. Non-overlapping Intervals
【代码】leetcodev 435. Non-overlapping Intervals。原创 2024-01-22 16:53:15 · 721 阅读 · 0 评论 -
Algorithms practice:leetcode 33. Search in Rotated Sorted Array
【代码】Algorithms practice:leetcode 33. Search in Rotated Sorted Array。原创 2023-12-29 18:00:11 · 1563 阅读 · 1 评论 -
Heap Sort Algorithm
要从上述给定的数组元素中建立最大堆,可以清楚地看到,上述形成的完整二叉树并不遵循堆属性。因此,我们的想法是按照自上而下的方法,将数组形成的完整二叉树按相反的层级顺序进行堆化。即首先堆化树中按层级顺序遍历的最后一个节点,然后堆化倒数第二个节点,以此类推。Last non-leaf node 最后一个非叶子节点。原创 2023-12-14 21:10:45 · 1341 阅读 · 0 评论 -
Quick Sort Algorithm
【代码】Quick Sort Algorithm。原创 2023-12-11 23:12:03 · 457 阅读 · 0 评论 -
Algorithms practice:array
【代码】Algorithms practice:array。原创 2023-12-11 23:11:02 · 443 阅读 · 0 评论 -
Shortest Cell Path
【代码】Shortest Cell Path。原创 2023-03-13 21:23:05 · 868 阅读 · 1 评论 -
Shifted Array Search (pramp)
【代码】Shifted Array Search (pramp)原创 2023-03-11 16:36:52 · 988 阅读 · 0 评论 -
704. Binary Search
【代码】704.Binary Search。原创 2023-03-08 20:11:14 · 885 阅读 · 0 评论 -
Algorithms practice:leetcode37 Sudoku Solver
【代码】Algorithms practice:leetcode37 Sudoku Solver。原创 2022-12-09 22:58:53 · 978 阅读 · 0 评论 -
interview: Tell Me About Your Work Experience
In my last job I was a member of a five-person team, and we worked together on a variety of large-scale projects where each of us was responsible for one part of the project. I really enjoyed the teamwork aspect of the job, and liked seeing how all the pie原创 2022-12-06 13:32:18 · 848 阅读 · 0 评论 -
interview: Tell Me About Yourself
程序员面试问题:自我介绍原创 2022-12-02 14:48:06 · 1082 阅读 · 0 评论 -
Algorithms practice:leetcode 29. Divide Two Integers
【代码】Algorithms practice:leetcode 29. Divide Two Integers。原创 2022-10-23 20:25:06 · 681 阅读 · 0 评论 -
Algorithms practice:leetcode 78. Subsets
【代码】Algorithms practice:leetcode 78. Subsets。原创 2022-10-22 22:28:31 · 714 阅读 · 0 评论 -
Algorithms practice:leetcode 371 Sum of Two Integers
【代码】Algorithms practice:leetcode 371 Sum of Two Integers。原创 2022-10-16 20:49:26 · 832 阅读 · 0 评论 -
leetcode 191. Number of 1 Bits
Write a function that takes an unsigned integer and returns the number of ‘1’ bits it has (also known as the Hamming weight).Note:Note that in some languages, such as Java, there is no unsigned integer type. In this case, the input will be given as a signe原创 2022-10-15 10:50:19 · 863 阅读 · 0 评论 -
Algorithms practice:leetcode 224 Basic Calculator
Algorithms practice:Basic Calculator 224原创 2022-09-13 22:56:12 · 330 阅读 · 1 评论 -
外语刷题集合:准备篇
外语刷题集合原创 2022-09-06 22:33:19 · 877 阅读 · 0 评论