Closed Ankit123848 closed 4 years ago
@Ankit123848 mention issue number
Ok I will do it now...!!! Please accept my pull request after that
On Mon, 19 Oct 2020, 17:07 Pratik Choudhari, notifications@github.com wrote:
@Ankit123848 https://github.com/Ankit123848 mention issue number
β You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/pratik-choudhari/AlgoCode/pull/434#issuecomment-712097685, or unsubscribe https://github.com/notifications/unsubscribe-auth/AOJDAOPUPYRM57IEOKEWZRLSLQQJPANCNFSM4SVXUONQ .
I have mentioned the Description and Checklist for my pull request but not able to find Reference issue number for which you have mentioned github URL Can you help me out with this?
On Mon, 19 Oct 2020, 18:14 Ankit Arora, ankitarora772@gmail.com wrote:
Ok I will do it now...!!! Please accept my pull request after that
On Mon, 19 Oct 2020, 17:07 Pratik Choudhari, notifications@github.com wrote:
@Ankit123848 https://github.com/Ankit123848 mention issue number
β You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/pratik-choudhari/AlgoCode/pull/434#issuecomment-712097685, or unsubscribe https://github.com/notifications/unsubscribe-auth/AOJDAOPUPYRM57IEOKEWZRLSLQQJPANCNFSM4SVXUONQ .
I have done all the changes...Plzz accept my pull request from new branch "AkkiBranch" and also there is not any issue no related to my pull request...It is a new file which I have contributed
On Mon, 19 Oct 2020, 19:41 Ankit Arora, ankitarora772@gmail.com wrote:
I have mentioned the Description and Checklist for my pull request but not able to find Reference issue number for which you have mentioned github URL Can you help me out with this?
On Mon, 19 Oct 2020, 18:14 Ankit Arora, ankitarora772@gmail.com wrote:
Ok I will do it now...!!! Please accept my pull request after that
On Mon, 19 Oct 2020, 17:07 Pratik Choudhari, notifications@github.com wrote:
@Ankit123848 https://github.com/Ankit123848 mention issue number
β You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/pratik-choudhari/AlgoCode/pull/434#issuecomment-712097685, or unsubscribe https://github.com/notifications/unsubscribe-auth/AOJDAOPUPYRM57IEOKEWZRLSLQQJPANCNFSM4SVXUONQ .
Implemented in C++ Language in sortingMethods folder Implemented Inbuilt Sort using Comparator[bool compare function] which is used in Standard Template Library Time Complexiry is Optimised using Inbuilt Sort It is faster than all sorting techniques like Bubble Sort , Insertion Sort etc. bool compare function is used if(a>b) ->Sorts in ascending Order if(a<b) ->Sorts in Descending Order **bool compare function is generalised not only for numbers but also for strings and characters