{ "info": { "author": "Linus Ritzmann", "author_email": "linus.ritzmann@gmail.com", "bugtrack_url": null, "classifiers": [], "description": "# Sorting with Linus\n\nThis package contains a few sorting methods which you might\nfind useful. Check below for proper usage but here is a short\nlist of all of them:\n\n1. bubble sort\n2. insertion sort\n3. quick sort\n4. selection sort\n\nHave fun with these methods.\n\n## bubble sort\n\n```python\nalist = [54, 26, 93, 17, 77, 31, 44, 55, 20]\nprint(bubbleSort(alist))\n```\n\nAn inefficient but easy to implement sorting algorithm.\n\n## selection sort\n\n```python\nalist = [54, 26, 93, 17, 77, 31, 44, 55, 20]\nprint(selectionSort(alist))\n```\n\nAn inefficient but easy to implement sorting algorithm.\n\n## insertion sort\n\n```python\nalist = [54, 26, 93, 17, 77, 31, 44, 55, 20]\nprint(insertionSort(alist))\n```\n\nAn inefficient but easy to implement sorting algorithm.\n\n## quick sort\n\n```python\nalist = [54,26,93,17,77,31,44,55,20]\nquick_sort(alist)\nprint(alist)\n```\n\nAn efficient but hard to implement sorting algorithm. Use this one!\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://gitlab.propulsion-home.ch/linus-ritzmann/week-3/day-4", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "sorting-with-linus", "package_url": "https://pypi.org/project/sorting-with-linus/", "platform": "", "project_url": "https://pypi.org/project/sorting-with-linus/", "project_urls": { "Homepage": "https://gitlab.propulsion-home.ch/linus-ritzmann/week-3/day-4" }, "release_url": "https://pypi.org/project/sorting-with-linus/0.1/", "requires_dist": null, "requires_python": ">=3.7", "summary": "Just a few sorting algorithms, which you may find useful (or not).", "version": "0.1" }, "last_serial": 5856642, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "55c00e774d520f20a7b3bf5bc1ffd42b", "sha256": "84dc3db2d7296f81e6483b18ba5f3d8dcb0d63a4648231f663751e17bf99f25f" }, "downloads": -1, "filename": "sorting_with_linus-0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "55c00e774d520f20a7b3bf5bc1ffd42b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 3328, "upload_time": "2019-09-19T14:05:24", "url": "https://files.pythonhosted.org/packages/5a/bd/ecd6aa140e51fe558f0860a2b8766dff51e6704bcc937d7361f334c03f35/sorting_with_linus-0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5a20971796235f81babc2f6c2c644475", "sha256": "fd434719375d6c797c8917b586c1126eb7a73a1e1cb523c3ccfd78535a6bbfe2" }, "downloads": -1, "filename": "sorting_with_linus-0.1.tar.gz", "has_sig": false, "md5_digest": "5a20971796235f81babc2f6c2c644475", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 2244, "upload_time": "2019-09-19T14:05:26", "url": "https://files.pythonhosted.org/packages/03/e8/256acae3c30b8f55d5de73b7ad7d60e07d0852635a74e96390a19b71d633/sorting_with_linus-0.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "55c00e774d520f20a7b3bf5bc1ffd42b", "sha256": "84dc3db2d7296f81e6483b18ba5f3d8dcb0d63a4648231f663751e17bf99f25f" }, "downloads": -1, "filename": "sorting_with_linus-0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "55c00e774d520f20a7b3bf5bc1ffd42b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 3328, "upload_time": "2019-09-19T14:05:24", "url": "https://files.pythonhosted.org/packages/5a/bd/ecd6aa140e51fe558f0860a2b8766dff51e6704bcc937d7361f334c03f35/sorting_with_linus-0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5a20971796235f81babc2f6c2c644475", "sha256": "fd434719375d6c797c8917b586c1126eb7a73a1e1cb523c3ccfd78535a6bbfe2" }, "downloads": -1, "filename": "sorting_with_linus-0.1.tar.gz", "has_sig": false, "md5_digest": "5a20971796235f81babc2f6c2c644475", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 2244, "upload_time": "2019-09-19T14:05:26", "url": "https://files.pythonhosted.org/packages/03/e8/256acae3c30b8f55d5de73b7ad7d60e07d0852635a74e96390a19b71d633/sorting_with_linus-0.1.tar.gz" } ] }