Prep for Python 3.14: Rename compression to data_compression (#12725)
* Prep for Python 3.14: Rename compression to data_compression * updating DIRECTORY.md --------- Co-authored-by: cclauss <cclauss@users.noreply.github.com>
23
DIRECTORY.md
@ -128,15 +128,6 @@
|
|||||||
* [Vigenere Cipher](ciphers/vigenere_cipher.py)
|
* [Vigenere Cipher](ciphers/vigenere_cipher.py)
|
||||||
* [Xor Cipher](ciphers/xor_cipher.py)
|
* [Xor Cipher](ciphers/xor_cipher.py)
|
||||||
|
|
||||||
## Compression
|
|
||||||
* [Burrows Wheeler](compression/burrows_wheeler.py)
|
|
||||||
* [Huffman](compression/huffman.py)
|
|
||||||
* [Lempel Ziv](compression/lempel_ziv.py)
|
|
||||||
* [Lempel Ziv Decompress](compression/lempel_ziv_decompress.py)
|
|
||||||
* [Lz77](compression/lz77.py)
|
|
||||||
* [Peak Signal To Noise Ratio](compression/peak_signal_to_noise_ratio.py)
|
|
||||||
* [Run Length Encoding](compression/run_length_encoding.py)
|
|
||||||
|
|
||||||
## Computer Vision
|
## Computer Vision
|
||||||
* [Cnn Classification](computer_vision/cnn_classification.py)
|
* [Cnn Classification](computer_vision/cnn_classification.py)
|
||||||
* [Flip Augmentation](computer_vision/flip_augmentation.py)
|
* [Flip Augmentation](computer_vision/flip_augmentation.py)
|
||||||
@ -181,6 +172,15 @@
|
|||||||
* [Volume Conversions](conversions/volume_conversions.py)
|
* [Volume Conversions](conversions/volume_conversions.py)
|
||||||
* [Weight Conversion](conversions/weight_conversion.py)
|
* [Weight Conversion](conversions/weight_conversion.py)
|
||||||
|
|
||||||
|
## Data Compression
|
||||||
|
* [Burrows Wheeler](data_compression/burrows_wheeler.py)
|
||||||
|
* [Huffman](data_compression/huffman.py)
|
||||||
|
* [Lempel Ziv](data_compression/lempel_ziv.py)
|
||||||
|
* [Lempel Ziv Decompress](data_compression/lempel_ziv_decompress.py)
|
||||||
|
* [Lz77](data_compression/lz77.py)
|
||||||
|
* [Peak Signal To Noise Ratio](data_compression/peak_signal_to_noise_ratio.py)
|
||||||
|
* [Run Length Encoding](data_compression/run_length_encoding.py)
|
||||||
|
|
||||||
## Data Structures
|
## Data Structures
|
||||||
* Arrays
|
* Arrays
|
||||||
* [Equilibrium Index In Array](data_structures/arrays/equilibrium_index_in_array.py)
|
* [Equilibrium Index In Array](data_structures/arrays/equilibrium_index_in_array.py)
|
||||||
@ -884,6 +884,7 @@
|
|||||||
* [Centripetal Force](physics/centripetal_force.py)
|
* [Centripetal Force](physics/centripetal_force.py)
|
||||||
* [Coulombs Law](physics/coulombs_law.py)
|
* [Coulombs Law](physics/coulombs_law.py)
|
||||||
* [Doppler Frequency](physics/doppler_frequency.py)
|
* [Doppler Frequency](physics/doppler_frequency.py)
|
||||||
|
* [Escape Velocity](physics/escape_velocity.py)
|
||||||
* [Grahams Law](physics/grahams_law.py)
|
* [Grahams Law](physics/grahams_law.py)
|
||||||
* [Horizontal Projectile Motion](physics/horizontal_projectile_motion.py)
|
* [Horizontal Projectile Motion](physics/horizontal_projectile_motion.py)
|
||||||
* [Hubble Parameter](physics/hubble_parameter.py)
|
* [Hubble Parameter](physics/hubble_parameter.py)
|
||||||
@ -1122,6 +1123,8 @@
|
|||||||
* [Sol1](project_euler/problem_092/sol1.py)
|
* [Sol1](project_euler/problem_092/sol1.py)
|
||||||
* Problem 094
|
* Problem 094
|
||||||
* [Sol1](project_euler/problem_094/sol1.py)
|
* [Sol1](project_euler/problem_094/sol1.py)
|
||||||
|
* Problem 095
|
||||||
|
* [Sol1](project_euler/problem_095/sol1.py)
|
||||||
* Problem 097
|
* Problem 097
|
||||||
* [Sol1](project_euler/problem_097/sol1.py)
|
* [Sol1](project_euler/problem_097/sol1.py)
|
||||||
* Problem 099
|
* Problem 099
|
||||||
@ -1202,6 +1205,8 @@
|
|||||||
* [Sol1](project_euler/problem_234/sol1.py)
|
* [Sol1](project_euler/problem_234/sol1.py)
|
||||||
* Problem 301
|
* Problem 301
|
||||||
* [Sol1](project_euler/problem_301/sol1.py)
|
* [Sol1](project_euler/problem_301/sol1.py)
|
||||||
|
* Problem 345
|
||||||
|
* [Sol1](project_euler/problem_345/sol1.py)
|
||||||
* Problem 493
|
* Problem 493
|
||||||
* [Sol1](project_euler/problem_493/sol1.py)
|
* [Sol1](project_euler/problem_493/sol1.py)
|
||||||
* Problem 551
|
* Problem 551
|
||||||
|
Before Width: | Height: | Size: 4.3 MiB After Width: | Height: | Size: 4.3 MiB |
Before Width: | Height: | Size: 104 KiB After Width: | Height: | Size: 104 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 476 KiB After Width: | Height: | Size: 476 KiB |
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 82 KiB |
@ -187,9 +187,9 @@ autoapi_dirs = [
|
|||||||
"boolean_algebra",
|
"boolean_algebra",
|
||||||
"cellular_automata",
|
"cellular_automata",
|
||||||
"ciphers",
|
"ciphers",
|
||||||
"compression",
|
|
||||||
"computer_vision",
|
"computer_vision",
|
||||||
"conversions",
|
"conversions",
|
||||||
|
"data_compression",
|
||||||
"data_structures",
|
"data_structures",
|
||||||
"digital_image_processing",
|
"digital_image_processing",
|
||||||
"divide_and_conquer",
|
"divide_and_conquer",
|
||||||
|