From ef01688b946d5d4ed565a3401aff3c8a526099cd Mon Sep 17 00:00:00 2001 From: Omkar Pathak Date: Thu, 20 Jul 2017 07:02:49 +0530 Subject: [PATCH] Added Bucket Sort implementation --- sorts/bucket_sort.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sorts/bucket_sort.py b/sorts/bucket_sort.py index a8fe614cc..e378d65f4 100644 --- a/sorts/bucket_sort.py +++ b/sorts/bucket_sort.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python # Author: OMKAR PATHAK # This program will illustrate how to implement bucket sort algorithm