All Projects → walkccc → Leetcode

walkccc / Leetcode

💡 LeetCode in C++/Java/Python (respect coding conventions)

Programming Languages

python
139335 projects - #7 most used programming language
java
68154 projects - #9 most used programming language
cpp
1120 projects

Projects that are alternatives of or similar to Leetcode

Leetcode
✨✌️✨leetcode刷题 内附leetcode solution代码自动下载生成器(Leetcode solution auto generator)
Stars: ✭ 504 (+399.01%)
Mutual labels:  leetcode, leetcode-solutions
Hello Algorithm
🌍 针对小白的算法训练 | 包括四部分:①.算法基础 ②.力扣图解 ③.大厂面经 ④.CS_汇总 | 附:1、千本开源电子书 2、百张技术思维导图(项目花了上百小时,希望可以点 star 支持,🌹感谢~)
Stars: ✭ 29,372 (+28981.19%)
Mutual labels:  leetcode, leetcode-solutions
Leetcode
Provide all my solutions and explanations in Chinese for all the Leetcode coding problems.
Stars: ✭ 5,619 (+5463.37%)
Mutual labels:  leetcode, leetcode-solutions
Daily Deeplearning
🔥机器学习/深度学习/Python/算法面试/自然语言处理教程/剑指offer/machine learning/deeplearning/Python/Algorithm interview/NLP Tutorial
Stars: ✭ 381 (+277.23%)
Mutual labels:  leetcode, leetcode-solutions
Awesome Java Leetcode
👑 LeetCode of algorithms with java solution(updating).
Stars: ✭ 8,297 (+8114.85%)
Mutual labels:  leetcode, leetcode-solutions
Coding Interview Gym
leetcode.com , algoexpert.io solutions in python and swift
Stars: ✭ 451 (+346.53%)
Mutual labels:  leetcode, leetcode-solutions
Leetcode
🎓Leetcode solutions in Python 📚
Stars: ✭ 655 (+548.51%)
Mutual labels:  leetcode, leetcode-solutions
Algorithm
常用算法和数据结构讲解,面试算法题/leetcode解题,提供golang/js版本
Stars: ✭ 312 (+208.91%)
Mutual labels:  leetcode, leetcode-solutions
Leetcode
👏🏻 leetcode solutions for Humans™
Stars: ✭ 1,129 (+1017.82%)
Mutual labels:  leetcode, leetcode-solutions
Leetcode
(229 / 280) [中文|English] Solutions and notes of LEETCODE using C++/Java/Python/Sql/Shell Script.
Stars: ✭ 747 (+639.6%)
Mutual labels:  leetcode, leetcode-solutions
Awesome Leetcode
💅 A collection of awesome leetcode solutions
Stars: ✭ 377 (+273.27%)
Mutual labels:  leetcode, leetcode-solutions
Clearest Leetcode Cpp Solutions
Clearest LeetCode C++ Solutions. 本项目追求思路清晰,代码简洁。This project is intended to clarify the general problem solving ideas
Stars: ✭ 33 (-67.33%)
Mutual labels:  leetcode, leetcode-solutions
Leetcode Rust
my leetcode solutions in rust
Stars: ✭ 345 (+241.58%)
Mutual labels:  leetcode, leetcode-solutions
Algorithms and data structures
180+ Algorithm & Data Structure Problems using C++
Stars: ✭ 4,667 (+4520.79%)
Mutual labels:  leetcode, leetcode-solutions
Leetcode
LeetCode Top 100 Liked Questions | Top Interview Questions | LeetCode 用户最喜欢的100题 | 面试最容易被问到的题
Stars: ✭ 312 (+208.91%)
Mutual labels:  leetcode, leetcode-solutions
Leetcode
LeetCode刷题记录与面试整理
Stars: ✭ 6,469 (+6304.95%)
Mutual labels:  leetcode, leetcode-solutions
Awesome Golang Algorithm
📝 LeetCode of algorithms with golang solution(updating).
Stars: ✭ 3,217 (+3085.15%)
Mutual labels:  leetcode, leetcode-solutions
Leetcode
✏️ LeetCode solutions in C++ 11 and Python3
Stars: ✭ 3,239 (+3106.93%)
Mutual labels:  leetcode, leetcode-solutions
Shortest Leetcode Python Solutions
Leet Code 刷题笔记 - - 不求最快最省,但求最短最优雅,Shorter is better here.
Stars: ✭ 735 (+627.72%)
Mutual labels:  leetcode, leetcode-solutions
Leetcode
LiCode
Stars: ✭ 29 (-71.29%)
Mutual labels:  leetcode, leetcode-solutions

LeetCode

LeetCode Solutions

Getting Started

In this repository, I'll work on solutions to LeetCode problems by C++, Java, and Python as much as I could.

Also, I build a website by GitHub Actions to host the code files by markdown files. You can see the built page here: LeetCode Solutions.

Coding Style

I believe messy code is costing you.

Therefore, I follow the formatter 99% of the time, but in rare situations, I format the code manually because it might look better in these cases.

Take a look at my configuration related to formatters in ~/.config/nvim/init.vim:

call plug#begin('~/.vim/plugged')
Plug 'google/vim-maktaba'
Plug 'google/vim-codefmt'
Plug 'google/vim-glaive'
call plug#end()

augroup autoformat_settings
  autocmd FileType c,cpp AutoFormatBuffer clang-format
  autocmd FileType java AutoFormatBuffer clang-format
  autocmd FileType python AutoFormatBuffer autopep8
augroup END

More Information

The repository is still under construction, and the goal is to keep up with the growth of LeetCode problems by the end of the year!

For more information, please visit my GitHub.

Hosted the site on Feb 23, 2019.

Revised on Dec 25, 2019.

Added init.vim on Jan 18, 2021.

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].