From 1b4912e146f8b23cc642e2a9f90f418e56383228 Mon Sep 17 00:00:00 2001 From: Sushant Srivastav <63559772+sushant4191@users.noreply.github.com> Date: Sun, 30 Oct 2022 13:39:54 +0530 Subject: [PATCH 1/4] Updated info Updated the readme section for sorts. --- sorts/README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 sorts/README.md diff --git a/sorts/README.md b/sorts/README.md new file mode 100644 index 000000000000..d022946ebf25 --- /dev/null +++ b/sorts/README.md @@ -0,0 +1,11 @@ +# Sorting Algorithms +Sorting is the process of putting data in a specific order. The way to arrange data in a specific order +is specified by the sorting algorithm. The most typical orders are lexical or numerical. The significance +of sorting lies in the fact that, if data is stored in a sorted manner, data searching can be highly optimised. +Data representation in more readable formats is another use for sorting. + +This section contains alot of important algorithms that helps us to use sorting algorithms in various scenarios. +## References +* +* +* From 2ceb785ee669a75eb518e3e13aa7af519d90c460 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 30 Oct 2022 08:11:30 +0000 Subject: [PATCH 2/4] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- sorts/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sorts/README.md b/sorts/README.md index d022946ebf25..390ad67d30a1 100644 --- a/sorts/README.md +++ b/sorts/README.md @@ -1,10 +1,10 @@ # Sorting Algorithms -Sorting is the process of putting data in a specific order. The way to arrange data in a specific order -is specified by the sorting algorithm. The most typical orders are lexical or numerical. The significance -of sorting lies in the fact that, if data is stored in a sorted manner, data searching can be highly optimised. +Sorting is the process of putting data in a specific order. The way to arrange data in a specific order +is specified by the sorting algorithm. The most typical orders are lexical or numerical. The significance +of sorting lies in the fact that, if data is stored in a sorted manner, data searching can be highly optimised. Data representation in more readable formats is another use for sorting. -This section contains alot of important algorithms that helps us to use sorting algorithms in various scenarios. +This section contains alot of important algorithms that helps us to use sorting algorithms in various scenarios. ## References * * From b3f73ef19a45f6b8974d02b721e39f198266018b Mon Sep 17 00:00:00 2001 From: Sushant Srivastav <63559772+sushant4191@users.noreply.github.com> Date: Sun, 30 Oct 2022 14:25:21 +0530 Subject: [PATCH 3/4] Update sorts/README.md Co-authored-by: Caeden Perelli-Harris --- sorts/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sorts/README.md b/sorts/README.md index 390ad67d30a1..b6c1372cc85b 100644 --- a/sorts/README.md +++ b/sorts/README.md @@ -2,7 +2,7 @@ Sorting is the process of putting data in a specific order. The way to arrange data in a specific order is specified by the sorting algorithm. The most typical orders are lexical or numerical. The significance of sorting lies in the fact that, if data is stored in a sorted manner, data searching can be highly optimised. -Data representation in more readable formats is another use for sorting. +Another use for sorting is to represent data in a more readable manner. This section contains alot of important algorithms that helps us to use sorting algorithms in various scenarios. ## References From a8c39b17bc92a054d6ecaa31f72b567aaef7c87a Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sun, 30 Oct 2022 10:04:18 +0100 Subject: [PATCH 4/4] Update README.md --- sorts/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sorts/README.md b/sorts/README.md index b6c1372cc85b..ceb0207c2be4 100644 --- a/sorts/README.md +++ b/sorts/README.md @@ -4,7 +4,7 @@ is specified by the sorting algorithm. The most typical orders are lexical or nu of sorting lies in the fact that, if data is stored in a sorted manner, data searching can be highly optimised. Another use for sorting is to represent data in a more readable manner. -This section contains alot of important algorithms that helps us to use sorting algorithms in various scenarios. +This section contains a lot of important algorithms that helps us to use sorting algorithms in various scenarios. ## References * *