From e49d11ab1c7019c1c4a66c97c4dcaf589dd60706 Mon Sep 17 00:00:00 2001 From: Leoriem-code Date: Tue, 2 Nov 2021 22:33:32 +0100 Subject: [PATCH 1/5] Added 5 README files --- arithmetic_analysis/README.md | 7 +++++++ audio_filters/README.md | 9 +++++++++ backtracking/README.md | 8 ++++++++ bit_manipulation/README.md | 17 +++++++++++------ boolean_algebra/README.md | 7 +++++++ 5 files changed, 42 insertions(+), 6 deletions(-) create mode 100644 arithmetic_analysis/README.md create mode 100644 audio_filters/README.md create mode 100644 backtracking/README.md create mode 100644 boolean_algebra/README.md diff --git a/arithmetic_analysis/README.md b/arithmetic_analysis/README.md new file mode 100644 index 000000000000..50dc02767ffe --- /dev/null +++ b/arithmetic_analysis/README.md @@ -0,0 +1,7 @@ +# Arithmetic analysis + +It's a branch of mathematics that deal with solving linear equations. + +* +* +* diff --git a/audio_filters/README.md b/audio_filters/README.md new file mode 100644 index 000000000000..9975fe24064b --- /dev/null +++ b/audio_filters/README.md @@ -0,0 +1,9 @@ +# Audio Filter + +Audio filters work on the frequency of an audio signal to attenuate unwanted frequency and amplify wanted ones. +They are used within anything related to sound, whether it's radio communication or a hi-fi system. + +* +* +* +* diff --git a/backtracking/README.md b/backtracking/README.md new file mode 100644 index 000000000000..ac06c4e60bfd --- /dev/null +++ b/backtracking/README.md @@ -0,0 +1,8 @@ +# Backtracking + +Backtracking is a way to speed up the search process by removing candidate when they can't be the solution of a problem. + +* +* +* +* diff --git a/bit_manipulation/README.md b/bit_manipulation/README.md index e5f82a270e28..8e0ee9aceb10 100644 --- a/bit_manipulation/README.md +++ b/bit_manipulation/README.md @@ -1,6 +1,11 @@ -* https://docs.python.org/3/reference/expressions.html#binary-bitwise-operations -* https://docs.python.org/3/reference/expressions.html#unary-arithmetic-and-bitwise-operations -* https://docs.python.org/3/library/stdtypes.html#bitwise-operations-on-integer-types -* https://wiki.python.org/moin/BitManipulation -* https://wiki.python.org/moin/BitwiseOperators -* https://www.tutorialspoint.com/python3/bitwise_operators_example.htm +# Bit manipulation + +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 core level of your computer. + +* +* +* +* +* +* +* diff --git a/boolean_algebra/README.md b/boolean_algebra/README.md new file mode 100644 index 000000000000..45969c855f9c --- /dev/null +++ b/boolean_algebra/README.md @@ -0,0 +1,7 @@ +# Boolean Algebra + +Boolean algebra is used to do arithmetic with bits of values True (1) or False (0). +There are three basic operations: 'and', 'or' and 'not'. + +* +* From 9bd02ea1a9113a43a1d33f46115df3902d883473 Mon Sep 17 00:00:00 2001 From: Leoriem-code Date: Wed, 3 Nov 2021 10:10:20 +0100 Subject: [PATCH 2/5] corrected arithmetic_analysis README --- arithmetic_analysis/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arithmetic_analysis/README.md b/arithmetic_analysis/README.md index 50dc02767ffe..45cf321eb6ad 100644 --- a/arithmetic_analysis/README.md +++ b/arithmetic_analysis/README.md @@ -1,6 +1,6 @@ # Arithmetic analysis -It's a branch of mathematics that deal with solving linear equations. +Arithmetic analysis is a branch of mathematics that deals with solving linear equations. * * From ccc19d6fcd9ec4496a5be7b928055b9767bc93b8 Mon Sep 17 00:00:00 2001 From: Leoriem-code <73761711+Leoriem-code@users.noreply.github.com> Date: Wed, 3 Nov 2021 14:24:18 +0100 Subject: [PATCH 3/5] Update audio_filters/README.md Co-authored-by: John Law --- audio_filters/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio_filters/README.md b/audio_filters/README.md index 9975fe24064b..4419bd8bdbf9 100644 --- a/audio_filters/README.md +++ b/audio_filters/README.md @@ -1,7 +1,7 @@ # Audio Filter Audio filters work on the frequency of an audio signal to attenuate unwanted frequency and amplify wanted ones. -They are used within anything related to sound, whether it's radio communication or a hi-fi system. +They are used within anything related to sound, whether it is radio communication or a hi-fi system. * * From 31d5d560bb839bffe9f0054bf74119528336a90c Mon Sep 17 00:00:00 2001 From: Leoriem-code <73761711+Leoriem-code@users.noreply.github.com> Date: Wed, 3 Nov 2021 14:24:36 +0100 Subject: [PATCH 4/5] Update backtracking/README.md Co-authored-by: John Law --- backtracking/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backtracking/README.md b/backtracking/README.md index ac06c4e60bfd..d4975dfb5ad7 100644 --- a/backtracking/README.md +++ b/backtracking/README.md @@ -1,6 +1,6 @@ # Backtracking -Backtracking is a way to speed up the search process by removing candidate when they can't be the solution of a problem. +Backtracking is a way to speed up the search process by removing candidates when they can't be the solution of a problem. * * From 34072419baecb03010af1df5e6802e89a0472c16 Mon Sep 17 00:00:00 2001 From: Leoriem-code <73761711+Leoriem-code@users.noreply.github.com> Date: Wed, 3 Nov 2021 14:25:38 +0100 Subject: [PATCH 5/5] Update bit_manipulation/README.md Co-authored-by: John Law --- bit_manipulation/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bit_manipulation/README.md b/bit_manipulation/README.md index 8e0ee9aceb10..3f5e028beb8e 100644 --- a/bit_manipulation/README.md +++ b/bit_manipulation/README.md @@ -1,6 +1,6 @@ # Bit manipulation -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 core level of your computer. +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. * *