From ff1922d76acffc4851a35463a2b3d4965d5aeb88 Mon Sep 17 00:00:00 2001 From: Ihab Date: Tue, 15 Feb 2022 18:02:05 +0000 Subject: [PATCH] Update README.md --- subjects/push-swap/README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/subjects/push-swap/README.md b/subjects/push-swap/README.md index 3e1237af..90479c87 100644 --- a/subjects/push-swap/README.md +++ b/subjects/push-swap/README.md @@ -2,7 +2,7 @@ ### Objectives -Push-swap is a very simple and highly effective algorithm. You have at your disposal a list of `int` values, two stacks (`a` and `b`) and a set of instructions. +Push-Swap is a very simple project that uses a Non-Comparative Sorting Algorithm. You have at your disposal a list of `int` values, two stacks (`a` and `b`) and a set of instructions. You will have to write 2 programs: @@ -161,3 +161,8 @@ This project will help you learn about : - the use of basic algorithms - the use of sorting algorithms - the use of stacks + +### HELP +https://en.wikipedia.org/wiki/Sorting_algorithm +https://en.wikipedia.org/wiki/Radix_sort +