-
Updated
Jul 15, 2020 - Java
#
leetcode
Here are 3,791 public repositories matching this topic...
Demonstrate all the questions on LeetCode in the form of animation.(用动画的形式呈现解LeetCode题目的思路)
-
Updated
Jun 28, 2020 - Java
刷算法全靠套路,认准 labuladong 就够了!English version supported! Crack LeetCode, not only how, but also why.
computer-science
algorithms
leetcode
data-structures
interview-questions
dynamic-programming
kmp
dynamic-programming-algorithm
-
Updated
Jul 15, 2020
Everything you need to know to get the job.
java
algorithm
algorithms
leetcode
interview
interviews
interview-practice
algorithm-competitions
leetcode-solutions
interview-questions
technical-coding-interview
algorithm-challenges
coding-interviews
coding-challenge
leetcode-questions
coding-challenges
leetcode-java
interview-prep
interview-preparation
coding-interview
-
Updated
Jul 1, 2020 - Java
c
algorithm
database
leetcode
cpp
stl
interview
operating-system
data-structures
interviews
interview-practice
interview-questions
interview-preparation
-
Updated
Jul 15, 2020 - C++
项目永久冻结,迁移至新地址:
-
Updated
Jul 17, 2019 - Python
facebook
algorithm
algorithms
datastructures
leetcode
leetcode-solutions
datastructure
leetcode-java
-
Updated
Jul 8, 2020 - Java
Interview = 简历指南 + LeetCode + Kaggle
-
Updated
May 25, 2020 - Jupyter Notebook
laggardkernel
commented
Oct 1, 2019
🚀 Feature Proposal
Adding leading zero in the question number will be an awesome feature for file explorer to sort files by the name.
Java Solutions to problems on LintCode/LeetCode
-
Updated
Mar 13, 2020 - Java
180+ Algorithm & Data Structure Problems using C++
c
c-plus-plus
tree
algorithm
datastructures
leetcode
cpp
bit-manipulation
data-structures
string-manipulation
interview-practice
leetcode-solutions
interview-questions
-
Updated
Jun 21, 2020 - C++
Provide all my solutions and explanations in Chinese for all the Leetcode coding problems.
leetcode
array
sort
data-structures
leetcode-solutions
interview-questions
coding-practices
alogrithms
-
Updated
Oct 23, 2019
Solutions to LeetCode by Swift
-
Updated
Jul 14, 2020 - Swift
-
Updated
Mar 13, 2020 - C++
-
Updated
Jul 17, 2020 - Go
Leetcode solutions
-
Updated
May 12, 2020 - Java
Go Solution for LeetCode algorithms problems, 100% coverage.
-
Updated
May 6, 2020 - Go
Solutions to LeetCode problems; updated daily. Subscribe to my YouTube channel for more.
mysql
java
bash
algorithm
leetcode
apache
interview
data-structures
leetcode-solutions
leetcode-questions
leetcode-java
leetcoder
-
Updated
Jul 17, 2020 - Java
Clean, Understandable Solutions and Resources for LeetCode Online Judge Algorithm Problems.
java
review
algorithm
algorithms
leetcode
interview
interview-practice
interview-questions
coding-interviews
interview-preparation
-
Updated
Oct 16, 2019 - Java
后端技术总结——包括Java基础、JVM、数据库、mysql、redis、计算机网络、算法、数据结构、操作系统、设计模式、系统设计、框架原理。最佳阅读地址:http://notfound9.github.io/interviewGuide/
mysql
java
redis
spring
backend
algorithms
leetcode
jvm
guide
interview
data-structures
interviews
star
interview-practice
interview-questions
leetcode-java
interview-preparation
java-interview
system-design
code-interview
ttnews
-
Updated
Jul 16, 2020 - Java
【NO LONGER UPDATE】✏️ LeetCode solutions with JavaScript
-
Updated
Mar 5, 2020 - JavaScript
-
Updated
Aug 11, 2019 - Python

python
algorithm
data-structure
leetcode
cpp
cpp11
interview-practice
leetcode-solutions
interview-questions
interview-preparation
leetcode-cpp
-
Updated
Jul 13, 2020 - C++
LeetCode刷题记录
-
Updated
Jul 10, 2020 - Java
Improve this page
Add a description, image, and links to the leetcode topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the leetcode topic, visit your repo's landing page and select "manage topics."
集合 S 包含从1到 n 的整数。不幸的是,因为数据错误,导致集合里面某一个元素复制了成了集合里面的另外一个元素的值,导致集合丢失了一个整数并且有一个元素重复。
给定一个数组 nums 代表了集合 S 发生错误后的结果。你的任务是首先寻找到重复出现的整数,再找到丢失的整数,将它们以数组的形式返回。
示例 1:
输入: nums = [1,2,2,4]
输出: [2,3]
注意:
给定数组的长度范围是 [2, 10000]。
给定的数组是无序的。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/set-mismatch