Skip to content

Commit 47dd31f

Browse files
Leoriem-codepoyea
andauthored
Add README files 1/7 (TheAlgorithms#5754)
* Added 5 README files * corrected arithmetic_analysis README * Update audio_filters/README.md Co-authored-by: John Law <johnlaw.po@gmail.com> * Update backtracking/README.md Co-authored-by: John Law <johnlaw.po@gmail.com> * Update bit_manipulation/README.md Co-authored-by: John Law <johnlaw.po@gmail.com> Co-authored-by: John Law <johnlaw.po@gmail.com>
1 parent 9655ec2 commit 47dd31f

File tree

5 files changed

+42
-6
lines changed

5 files changed

+42
-6
lines changed

arithmetic_analysis/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Arithmetic analysis
2+
3+
Arithmetic analysis is a branch of mathematics that deals with solving linear equations.
4+
5+
* <https://en.wikipedia.org/wiki/System_of_linear_equations>
6+
* <https://en.wikipedia.org/wiki/Gaussian_elimination>
7+
* <https://en.wikipedia.org/wiki/Root-finding_algorithms>

audio_filters/README.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Audio Filter
2+
3+
Audio filters work on the frequency of an audio signal to attenuate unwanted frequency and amplify wanted ones.
4+
They are used within anything related to sound, whether it is radio communication or a hi-fi system.
5+
6+
* <https://www.masteringbox.com/filter-types/>
7+
* <http://ethanwiner.com/filters.html>
8+
* <https://en.wikipedia.org/wiki/Audio_filter>
9+
* <https://en.wikipedia.org/wiki/Electronic_filter>

backtracking/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Backtracking
2+
3+
Backtracking is a way to speed up the search process by removing candidates when they can't be the solution of a problem.
4+
5+
* <https://en.wikipedia.org/wiki/Backtracking>
6+
* <https://en.wikipedia.org/wiki/Decision_tree_pruning>
7+
* <https://medium.com/@priyankmistry1999/backtracking-sudoku-6e4439e4825c>
8+
* <https://www.geeksforgeeks.org/sudoku-backtracking-7/>

bit_manipulation/README.md

+11-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
* https://docs.python.org/3/reference/expressions.html#binary-bitwise-operations
2-
* https://docs.python.org/3/reference/expressions.html#unary-arithmetic-and-bitwise-operations
3-
* https://docs.python.org/3/library/stdtypes.html#bitwise-operations-on-integer-types
4-
* https://wiki.python.org/moin/BitManipulation
5-
* https://wiki.python.org/moin/BitwiseOperators
6-
* https://www.tutorialspoint.com/python3/bitwise_operators_example.htm
1+
# Bit manipulation
2+
3+
Bit manipulation is the act of manipulating bits to detect errors (hamming code), encrypts and decrypts messages (more on that in the 'ciphers' folder) or just do anything at the lowest level of your computer.
4+
5+
* <https://en.wikipedia.org/wiki/Bit_manipulation>
6+
* <https://docs.python.org/3/reference/expressions.html#binary-bitwise-operations>
7+
* <https://docs.python.org/3/reference/expressions.html#unary-arithmetic-and-bitwise-operations>
8+
* <https://docs.python.org/3/library/stdtypes.html#bitwise-operations-on-integer-types>
9+
* <https://wiki.python.org/moin/BitManipulation>
10+
* <https://wiki.python.org/moin/BitwiseOperators>
11+
* <https://www.tutorialspoint.com/python3/bitwise_operators_example.htm>

boolean_algebra/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Boolean Algebra
2+
3+
Boolean algebra is used to do arithmetic with bits of values True (1) or False (0).
4+
There are three basic operations: 'and', 'or' and 'not'.
5+
6+
* <https://en.wikipedia.org/wiki/Boolean_algebra>
7+
* <https://plato.stanford.edu/entries/boolalg-math/>

0 commit comments

Comments
 (0)