From 803da632d9ee1e4b64673500ebad05ba7183b3c0 Mon Sep 17 00:00:00 2001 From: Dileepvarma18 <44198049+Dileepvarma18@users.noreply.github.com> Date: Sun, 28 Oct 2018 22:32:04 +0530 Subject: [PATCH] Create selection sort --- selection sort | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 selection sort diff --git a/selection sort b/selection sort new file mode 100644 index 00000000..d3dd6ccf --- /dev/null +++ b/selection sort @@ -0,0 +1,15 @@ +x = int(input("enter num of elem: ")) +l=[] +for i in range(x): + b=int(input("enter elements: ")) + a = l.append(b) +i = 0 +while i