All Projects → LLancelot → LeetCode

LLancelot / LeetCode

Licence: other
✍️ My LeetCode solutions, ideas and templates sharing. (我的LeetCode题解,思路以及各专题的解题模板分享。分专题归纳,见tag)

Programming Languages

java
68154 projects - #9 most used programming language
python
139335 projects - #7 most used programming language
C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to LeetCode

Leetcode Java
LeetCode solutions written in Java
Stars: ✭ 134 (+8.94%)
Mutual labels:  leetcode, leetcode-solutions, interview-questions
CodingInterview
Leetcode解题、剑指offer第二版💪💪💪⛷😀
Stars: ✭ 28 (-77.24%)
Mutual labels:  leetcode, leetcode-solutions, interview-questions
Leetcode In Swift
My solutions to LeetCode problems written in Swift
Stars: ✭ 150 (+21.95%)
Mutual labels:  leetcode, leetcode-solutions, interview-questions
Leetcode
Provide all my solutions and explanations in Chinese for all the Leetcode coding problems.
Stars: ✭ 5,619 (+4468.29%)
Mutual labels:  leetcode, leetcode-solutions, interview-questions
Must-Do-Coding-Questions-for-Companies
Must Do Coding Questions for Companies like Amazon, Microsoft, Adobe, etc. It also help to crack the technical inteviews.
Stars: ✭ 28 (-77.24%)
Mutual labels:  leetcode, leetcode-solutions, interview-questions
Hello Algorithm
🌍 针对小白的算法训练 | 包括四部分:①.算法基础 ②.力扣图解 ③.大厂面经 ④.CS_汇总 | 附:1、千本开源电子书 2、百张技术思维导图(项目花了上百小时,希望可以点 star 支持,🌹感谢~)
Stars: ✭ 29,372 (+23779.67%)
Mutual labels:  leetcode, leetcode-solutions, interview-questions
Leetcode Solutions
🏋️ Python / Modern C++ Solutions of All 2111 LeetCode Problems (Weekly Update)
Stars: ✭ 2,787 (+2165.85%)
Mutual labels:  leetcode, leetcode-solutions, interview-questions
Coding-Interview-101
Solutions to LeetCode problems filtered with companies, topics and difficulty.
Stars: ✭ 21 (-82.93%)
Mutual labels:  leetcode, leetcode-solutions, interview-questions
InterviewPrep
A repository containing link of good interview questions
Stars: ✭ 54 (-56.1%)
Mutual labels:  leetcode, leetcode-solutions, interview-questions
Interviews
Everything you need to know to get the job.
Stars: ✭ 54,875 (+44513.82%)
Mutual labels:  leetcode, leetcode-solutions, interview-questions
COMPETITVE-PROGRAMMING
Competitive programming is a mind sport usually held over the Internet or a local network, involving participants trying to program according to provided specifications. This repo contains the Detailed Explanation and implementation of Various Coding problems on various platforms in C++
Stars: ✭ 60 (-51.22%)
Mutual labels:  leetcode-solutions, interview-questions, data-structures-and-algorithms
Leetcode-solutions
Leetcode Grinder.
Stars: ✭ 14 (-88.62%)
Mutual labels:  leetcode, leetcode-solutions, interview-questions
Algorithms and data structures
180+ Algorithm & Data Structure Problems using C++
Stars: ✭ 4,667 (+3694.31%)
Mutual labels:  leetcode, leetcode-solutions, interview-questions
Leetcode
👏🏻 leetcode solutions for Humans™
Stars: ✭ 1,129 (+817.89%)
Mutual labels:  leetcode, leetcode-solutions, interview-questions
Leetcode Go
✅ Solutions to LeetCode by Go, 100% test coverage, runtime beats 100% / LeetCode 题解
Stars: ✭ 22,440 (+18143.9%)
Mutual labels:  leetcode, leetcode-solutions, interview-questions
Algorithms Leetcode Javascript
Algorithms resolution in Javascript. Leetcode - Geeksforgeeks - Careercup
Stars: ✭ 157 (+27.64%)
Mutual labels:  leetcode, leetcode-solutions, interview-questions
Leetcode Python
LeetCode solutions in Python2. LeetCode题解 in Python2。
Stars: ✭ 182 (+47.97%)
Mutual labels:  leetcode, leetcode-solutions, interview-questions
The-Complete-FAANG-Preparation
This repository contains all the DSA (Data-Structures, Algorithms, 450 DSA by Love Babbar Bhaiya, FAANG Questions), Technical Subjects (OS + DBMS + SQL + CN + OOPs) Theory+Questions, FAANG Interview questions, and Miscellaneous Stuff (Programming MCQs, Puzzles, Aptitude, Reasoning). The Programming languages used for demonstration are C++, Pytho…
Stars: ✭ 8,681 (+6957.72%)
Mutual labels:  leetcode, leetcode-solutions, interview-questions
CodingInterview
Solutions to Leetcode, CareerCup Coding problems
Stars: ✭ 64 (-47.97%)
Mutual labels:  leetcode, leetcode-solutions, interview-questions
LeetCode-Solution-Well-Explained
My LeetCode solutions using Java. Sorted in different topics and add detailed comments for easy understanding.
Stars: ✭ 23 (-81.3%)
Mutual labels:  leetcode, leetcode-solutions

LeetCode

👉 2020 ~ 2022 两周年纪念!已达成 1000+ LeetCode题 & LeetCode Contest World Rating 前 10% 小成就。

🎉 目前已拿到多家互联网后端/国企/银行软开的21届offer,笔试及面试手撕环节 AC 率 95%。

希望能帮助到还在准备北美SDE、国内秋招&春招技术开发岗的各位,欢迎大家pull request一起完善!

👉 有需要 LeetCode 会员账号、或需要解锁查看内容的、有问题都欢迎私信我,我的会员2022年11月到期。

我的LeetCode刷题、思路和代码总结,以及常见算法模板。欢迎在仓库内搜索题解(since 2020, 目前工作繁忙,更新较慢).

欢迎各位star!便于日常学习/面试/笔试前复习,重在积累和思路,因为题目是做不完!

刷题方法

Tag

Tag 题解分类
Array 数组
Two Pointers 双指针问题
DP 动态规划
Tree
Linked List 链表
Subset 子集问题
DFS 深度优先搜索
BFS 广度优先搜索
Binary Search 二分查找
Greedy 贪心算法
Graph
Sliding Window 滑动窗口问题
Merge Intervals 区间合并问题
BackTracking 回溯
Stack
Bit Manipulation 位运算
Heap
Design 设计题
String 字符串
Palindrome 回文串

题目列表

Two Pointers

Dynamic Programming

Tree

Linked List

Depth-First-Search

Breath-First-Search

Graph

Greedy

Binary Search

Sliding Window

Merge Intervals (区间问题)

Subset

BackTracking

Stack

Heap / Heap Sort

Design

Array

String

Palindrome

Bit Manipulation

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].