├── LeetCode.apkg ├── img ├── card-back.png ├── card-front.png ├── card-hint.png ├── deck-structure.png ├── neetcode-roadmap.png ├── scheduling-daily.png ├── scheduling-new.png └── scheduling-lapses.png ├── LICENSE └── README.md /LeetCode.apkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayorgo/leetcode-neetcode-anki/HEAD/LeetCode.apkg -------------------------------------------------------------------------------- /img/card-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayorgo/leetcode-neetcode-anki/HEAD/img/card-back.png -------------------------------------------------------------------------------- /img/card-front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayorgo/leetcode-neetcode-anki/HEAD/img/card-front.png -------------------------------------------------------------------------------- /img/card-hint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayorgo/leetcode-neetcode-anki/HEAD/img/card-hint.png -------------------------------------------------------------------------------- /img/deck-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayorgo/leetcode-neetcode-anki/HEAD/img/deck-structure.png -------------------------------------------------------------------------------- /img/neetcode-roadmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayorgo/leetcode-neetcode-anki/HEAD/img/neetcode-roadmap.png -------------------------------------------------------------------------------- /img/scheduling-daily.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayorgo/leetcode-neetcode-anki/HEAD/img/scheduling-daily.png -------------------------------------------------------------------------------- /img/scheduling-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayorgo/leetcode-neetcode-anki/HEAD/img/scheduling-new.png -------------------------------------------------------------------------------- /img/scheduling-lapses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayorgo/leetcode-neetcode-anki/HEAD/img/scheduling-lapses.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 ayorgo 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # leetcode-neetcode-anki 2 | [Anki](https://apps.ankiweb.net/) flashcards for the whole set of [LeetCode](https://leetcode.com/) problems + [NeetCode150](https://neetcode.io/) as a subdeck. NeetCode flashcards come in the original order. Scheduling information is also included. 3 | 4 | ## Card structure 5 | Front |Hint |Back 6 | :-------------------------------:|:-----------------------------:|:-----------------------------: 7 | ![Card front](img/card-front.png)|![Card hint](img/card-hint.png)|![Card back](img/card-back.png) 8 | 9 | Each card contains the following fields: 10 | * title 11 | * id 12 | * slug 13 | * difficulty 14 | * topics 15 | * paid 16 | 17 | which is only a subset of what [[1]](#1) scrapes. 18 | 19 | ## Deck structure 20 | ![Deck structure](img/deck-structure.png) 21 | 22 | ## Scheduling 23 | ![Scheduling daily](img/scheduling-daily.png) 24 | ![Scheduling new](img/scheduling-new.png) 25 | ![Scheduling lapses](img/scheduling-lapses.png) 26 | 27 | ## [NeetCode roadmap](https://neetcode.io/roadmap) 28 | ![NeetCode roadmap](img/neetcode-roadmap.png) 29 | 30 | ## References 31 | [1] The flashcards were generated using https://github.com/fspv/leetcode-anki. 32 | --------------------------------------------------------------------------------