Skip to content

Remove unused deps, clean up package.json a bit #1176

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/Ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16.x"
node-version: 16
cache: npm

- name: 📦 Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/UpdateDirectory.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
updateDirectory:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "14"
node-version: 16
cache: npm

- name: 📦 Install dependencies
Expand Down
16 changes: 14 additions & 2 deletions DIRECTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* **Bit-Manipulation**
* [BinaryCountSetBits](Bit-Manipulation/BinaryCountSetBits.js)
* [IsPowerOfTwo](Bit-Manipulation/IsPowerOfTwo.js)
* [LogTwo](Bit-Manipulation/LogTwo.js)
* [NextPowerOfTwo](Bit-Manipulation/NextPowerOfTwo.js)
* [SetBit](Bit-Manipulation/SetBit.js)
* **Cache**
Expand All @@ -20,7 +21,7 @@
* **Ciphers**
* [AffineCipher](Ciphers/AffineCipher.js)
* [Atbash](Ciphers/Atbash.js)
* [CaesarsCipher](Ciphers/CaesarsCipher.js)
* [CaesarCipher](Ciphers/CaesarCipher.js)
* [KeyFinder](Ciphers/KeyFinder.js)
* [KeywordShiftedAlphabet](Ciphers/KeywordShiftedAlphabet.js)
* [ROT13](Ciphers/ROT13.js)
Expand Down Expand Up @@ -68,7 +69,6 @@
* [AddTwoNumbers](Data-Structures/Linked-List/AddTwoNumbers.js)
* [CycleDetection](Data-Structures/Linked-List/CycleDetection.js)
* [DoublyLinkedList](Data-Structures/Linked-List/DoublyLinkedList.js)
* [RotateListRight](Data-Structures/Linked-List/RotateListRight.js)
* [SinglyCircularLinkedList](Data-Structures/Linked-List/SinglyCircularLinkedList.js)
* [SinglyLinkedList](Data-Structures/Linked-List/SinglyLinkedList.js)
* **Queue**
Expand All @@ -85,6 +85,7 @@
* **Vectors**
* [Vector2](Data-Structures/Vectors/Vector2.js)
* **Dynamic-Programming**
* [CatalanNumbers](Dynamic-Programming/CatalanNumbers.js)
* [ClimbingStairs](Dynamic-Programming/ClimbingStairs.js)
* [CoinChange](Dynamic-Programming/CoinChange.js)
* [EditDistance](Dynamic-Programming/EditDistance.js)
Expand Down Expand Up @@ -141,8 +142,10 @@
* [BinaryConvert](Maths/BinaryConvert.js)
* [BinaryExponentiationIterative](Maths/BinaryExponentiationIterative.js)
* [BinaryExponentiationRecursive](Maths/BinaryExponentiationRecursive.js)
* [BinomialCoefficient](Maths/BinomialCoefficient.js)
* [BisectionMethod](Maths/BisectionMethod.js)
* [CheckKishnamurthyNumber](Maths/CheckKishnamurthyNumber.js)
* [CircularArc](Maths/CircularArc.js)
* [CollatzSequence](Maths/CollatzSequence.js)
* [Coordinate](Maths/Coordinate.js)
* [CoPrimeCheck](Maths/CoPrimeCheck.js)
Expand Down Expand Up @@ -170,15 +173,19 @@
* [IsEven](Maths/IsEven.js)
* [IsOdd](Maths/IsOdd.js)
* [IsPronic](Maths/IsPronic.js)
* [IsSquareFree](Maths/IsSquareFree.js)
* [JugglerSequence](Maths/JugglerSequence.js)
* [LeapYear](Maths/LeapYear.js)
* [LinearSieve](Maths/LinearSieve.js)
* [LiouvilleFunction](Maths/LiouvilleFunction.js)
* [LucasSeries](Maths/LucasSeries.js)
* [Mandelbrot](Maths/Mandelbrot.js)
* [MatrixExponentiationRecursive](Maths/MatrixExponentiationRecursive.js)
* [MatrixMultiplication](Maths/MatrixMultiplication.js)
* [MeanAbsoluteDeviation](Maths/MeanAbsoluteDeviation.js)
* [MeanSquareError](Maths/MeanSquareError.js)
* [MidpointIntegration](Maths/MidpointIntegration.js)
* [MobiusFunction](Maths/MobiusFunction.js)
* [ModularBinaryExponentiationRecursive](Maths/ModularBinaryExponentiationRecursive.js)
* [NumberOfDigits](Maths/NumberOfDigits.js)
* [Palindrome](Maths/Palindrome.js)
Expand Down Expand Up @@ -216,13 +223,16 @@
* [Problem004](Project-Euler/Problem004.js)
* [Problem005](Project-Euler/Problem005.js)
* [Problem006](Project-Euler/Problem006.js)
* [Problem007](Project-Euler/Problem007.js)
* [Problem008](Project-Euler/Problem008.js)
* [Problem009](Project-Euler/Problem009.js)
* [Problem010](Project-Euler/Problem010.js)
* [Problem012](Project-Euler/Problem012.js)
* [Problem013](Project-Euler/Problem013.js)
* [Problem014](Project-Euler/Problem014.js)
* [Problem015](Project-Euler/Problem015.js)
* [Problem016](Project-Euler/Problem016.js)
* [Problem017](Project-Euler/Problem017.js)
* [Problem018](Project-Euler/Problem018.js)
* [Problem020](Project-Euler/Problem020.js)
* [Problem023](Project-Euler/Problem023.js)
Expand All @@ -245,6 +255,7 @@
* [InterpolationSearch](Search/InterpolationSearch.js)
* [JumpSearch](Search/JumpSearch.js)
* [LinearSearch](Search/LinearSearch.js)
* [Minesweeper](Search/Minesweeper.js)
* [QuickSelectSearch](Search/QuickSelectSearch.js)
* [SlidingWindow](Search/SlidingWindow.js)
* [StringSearch](Search/StringSearch.js)
Expand Down Expand Up @@ -296,6 +307,7 @@
* [CheckRearrangePalindrome](String/CheckRearrangePalindrome.js)
* [CheckSnakeCase](String/CheckSnakeCase.js)
* [CheckWordOccurrence](String/CheckWordOccurrence.js)
* [CountSubstrings](String/CountSubstrings.js)
* [CountVowels](String/CountVowels.js)
* [CreatePermutations](String/CreatePermutations.js)
* [DiceCoefficient](String/DiceCoefficient.js)
Expand Down
Loading
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy