Skip to content

Commit bd7de6a

Browse files
authored
chore: Remove unused deps, clean up package.json a bit (TheAlgorithms#1176)
1 parent 32b9a99 commit bd7de6a

File tree

5 files changed

+195
-233
lines changed

5 files changed

+195
-233
lines changed

.github/workflows/Ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v3
1515
- uses: actions/setup-node@v3
1616
with:
17-
node-version: "16.x"
17+
node-version: 16
1818
cache: npm
1919

2020
- name: 📦 Install dependencies

.github/workflows/UpdateDirectory.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
updateDirectory:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
14-
- uses: actions/setup-node@v2
13+
- uses: actions/checkout@v3
14+
- uses: actions/setup-node@v3
1515
with:
16-
node-version: "14"
16+
node-version: 16
1717
cache: npm
1818

1919
- name: 📦 Install dependencies

DIRECTORY.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
* **Bit-Manipulation**
1010
* [BinaryCountSetBits](Bit-Manipulation/BinaryCountSetBits.js)
1111
* [IsPowerOfTwo](Bit-Manipulation/IsPowerOfTwo.js)
12+
* [LogTwo](Bit-Manipulation/LogTwo.js)
1213
* [NextPowerOfTwo](Bit-Manipulation/NextPowerOfTwo.js)
1314
* [SetBit](Bit-Manipulation/SetBit.js)
1415
* **Cache**
@@ -20,7 +21,7 @@
2021
* **Ciphers**
2122
* [AffineCipher](Ciphers/AffineCipher.js)
2223
* [Atbash](Ciphers/Atbash.js)
23-
* [CaesarsCipher](Ciphers/CaesarsCipher.js)
24+
* [CaesarCipher](Ciphers/CaesarCipher.js)
2425
* [KeyFinder](Ciphers/KeyFinder.js)
2526
* [KeywordShiftedAlphabet](Ciphers/KeywordShiftedAlphabet.js)
2627
* [ROT13](Ciphers/ROT13.js)
@@ -68,7 +69,6 @@
6869
* [AddTwoNumbers](Data-Structures/Linked-List/AddTwoNumbers.js)
6970
* [CycleDetection](Data-Structures/Linked-List/CycleDetection.js)
7071
* [DoublyLinkedList](Data-Structures/Linked-List/DoublyLinkedList.js)
71-
* [RotateListRight](Data-Structures/Linked-List/RotateListRight.js)
7272
* [SinglyCircularLinkedList](Data-Structures/Linked-List/SinglyCircularLinkedList.js)
7373
* [SinglyLinkedList](Data-Structures/Linked-List/SinglyLinkedList.js)
7474
* **Queue**
@@ -85,6 +85,7 @@
8585
* **Vectors**
8686
* [Vector2](Data-Structures/Vectors/Vector2.js)
8787
* **Dynamic-Programming**
88+
* [CatalanNumbers](Dynamic-Programming/CatalanNumbers.js)
8889
* [ClimbingStairs](Dynamic-Programming/ClimbingStairs.js)
8990
* [CoinChange](Dynamic-Programming/CoinChange.js)
9091
* [EditDistance](Dynamic-Programming/EditDistance.js)
@@ -141,8 +142,10 @@
141142
* [BinaryConvert](Maths/BinaryConvert.js)
142143
* [BinaryExponentiationIterative](Maths/BinaryExponentiationIterative.js)
143144
* [BinaryExponentiationRecursive](Maths/BinaryExponentiationRecursive.js)
145+
* [BinomialCoefficient](Maths/BinomialCoefficient.js)
144146
* [BisectionMethod](Maths/BisectionMethod.js)
145147
* [CheckKishnamurthyNumber](Maths/CheckKishnamurthyNumber.js)
148+
* [CircularArc](Maths/CircularArc.js)
146149
* [CollatzSequence](Maths/CollatzSequence.js)
147150
* [Coordinate](Maths/Coordinate.js)
148151
* [CoPrimeCheck](Maths/CoPrimeCheck.js)
@@ -170,15 +173,19 @@
170173
* [IsEven](Maths/IsEven.js)
171174
* [IsOdd](Maths/IsOdd.js)
172175
* [IsPronic](Maths/IsPronic.js)
176+
* [IsSquareFree](Maths/IsSquareFree.js)
173177
* [JugglerSequence](Maths/JugglerSequence.js)
174178
* [LeapYear](Maths/LeapYear.js)
175179
* [LinearSieve](Maths/LinearSieve.js)
180+
* [LiouvilleFunction](Maths/LiouvilleFunction.js)
176181
* [LucasSeries](Maths/LucasSeries.js)
177182
* [Mandelbrot](Maths/Mandelbrot.js)
178183
* [MatrixExponentiationRecursive](Maths/MatrixExponentiationRecursive.js)
179184
* [MatrixMultiplication](Maths/MatrixMultiplication.js)
185+
* [MeanAbsoluteDeviation](Maths/MeanAbsoluteDeviation.js)
180186
* [MeanSquareError](Maths/MeanSquareError.js)
181187
* [MidpointIntegration](Maths/MidpointIntegration.js)
188+
* [MobiusFunction](Maths/MobiusFunction.js)
182189
* [ModularBinaryExponentiationRecursive](Maths/ModularBinaryExponentiationRecursive.js)
183190
* [NumberOfDigits](Maths/NumberOfDigits.js)
184191
* [Palindrome](Maths/Palindrome.js)
@@ -216,13 +223,16 @@
216223
* [Problem004](Project-Euler/Problem004.js)
217224
* [Problem005](Project-Euler/Problem005.js)
218225
* [Problem006](Project-Euler/Problem006.js)
226+
* [Problem007](Project-Euler/Problem007.js)
219227
* [Problem008](Project-Euler/Problem008.js)
220228
* [Problem009](Project-Euler/Problem009.js)
221229
* [Problem010](Project-Euler/Problem010.js)
222230
* [Problem012](Project-Euler/Problem012.js)
231+
* [Problem013](Project-Euler/Problem013.js)
223232
* [Problem014](Project-Euler/Problem014.js)
224233
* [Problem015](Project-Euler/Problem015.js)
225234
* [Problem016](Project-Euler/Problem016.js)
235+
* [Problem017](Project-Euler/Problem017.js)
226236
* [Problem018](Project-Euler/Problem018.js)
227237
* [Problem020](Project-Euler/Problem020.js)
228238
* [Problem023](Project-Euler/Problem023.js)
@@ -245,6 +255,7 @@
245255
* [InterpolationSearch](Search/InterpolationSearch.js)
246256
* [JumpSearch](Search/JumpSearch.js)
247257
* [LinearSearch](Search/LinearSearch.js)
258+
* [Minesweeper](Search/Minesweeper.js)
248259
* [QuickSelectSearch](Search/QuickSelectSearch.js)
249260
* [SlidingWindow](Search/SlidingWindow.js)
250261
* [StringSearch](Search/StringSearch.js)
@@ -296,6 +307,7 @@
296307
* [CheckRearrangePalindrome](String/CheckRearrangePalindrome.js)
297308
* [CheckSnakeCase](String/CheckSnakeCase.js)
298309
* [CheckWordOccurrence](String/CheckWordOccurrence.js)
310+
* [CountSubstrings](String/CountSubstrings.js)
299311
* [CountVowels](String/CountVowels.js)
300312
* [CreatePermutations](String/CreatePermutations.js)
301313
* [DiceCoefficient](String/DiceCoefficient.js)

0 commit comments

Comments
 (0)
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