Skip to content

Commit

Permalink
Cleaned Up Python Folder in Repo (#2171)
Browse files Browse the repository at this point in the history
* Removing Extraneous Files from Repo

* Delete anagram.py

* Delete zen_of_python.py

* Delete first_non_repeating_character.py

* Delete palindrome.py

* Removed extraneous programs from list

* Documenting links properly

* Slowly fixing up links

* Slowly working through issues

* Fixed typo
  • Loading branch information
jrg94 authored Oct 6, 2020
1 parent 93fab4a commit 2b67a39
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 146 deletions.
14 changes: 0 additions & 14 deletions archive/p/python/Dockerfile

This file was deleted.

47 changes: 24 additions & 23 deletions archive/p/python/README.md
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
# Sample Programs in Python

Welcome to Sample Programs in Python!
Welcome to Sample Programs in Python! To find documentation related to the Python
code in this repo, look [here][trc-python-docs].

## Sample Programs

- [Anagram in Python][40]
- [Baklava in Python][22]
- Solution borrowed from @erayak via the [baklava repo][21]
- [Binary Search][31]
- [Bubble Sort in Python][31]
- Capitalize in Python
- [Convex Hull in Python][44]
- [Even Odd in Python][32]
- [Factorial in Python][33]
- [Fibonacci Sequence in Python][24]
- [File IO in Python][29]
- [Fizz Buzz in Python][1]
- [Game of Life in Python][4]
- [Hello World in Python][0]
- [Fizz Buzz in Python][fizz-buzz-article]
- [Game of Life in Python][game-of-life-article-issue]
- [Hello World in Python][hello-world-article]
- [Insertion Sort in Python][34]
- [Job Sequencing with Deadlines in Python][30]
- [Job Sequencing with Deadlines in Python][job-sequencing-article-issue]
- [Longest Common Subsequence][26]
- [Longest Palindromic Subsequence][42]
- [Merge Sort in Python][35]
- [Minimum Spanning Tree][43]
- [Prime Number in Python][36]
- [Quick Sort in Python][37]
- [Quine in Python][3]
- [Reverse a String in Python][2]
- [Quine in Python][quine-article-issue]
- [Reverse a String in Python][reverse-a-string-article]
- [Roman Numberal Conversion in Python][25]
- [ROT-13 in Python][38]
- [Selection Sort in Python][39]
- [Convex Hull in Python][44]
- [Sleep sort in Python][45]

## Fun Facts
Expand Down Expand Up @@ -103,19 +103,22 @@ Welcome to Sample Programs in Python!

## References

- [Python Wiki][6]
- [Python Docs][7]
- [Python REPL][8]
- [Python Wiki][python-wiki]
- [Python Docs][python-website]
- [Python REPL][python-online-repl]

[fizz-buzz-article]: https://therenegadecoder.com/code/fizz-buzz-in-python/
[game-of-life-article-issue]: https://github.com/jrg94/sample-programs/issues/111
[hello-world-article]: https://therenegadecoder.com/code/hello-world-in-python/
[job-sequencing-article-issue]: https://github.com/TheRenegadeCoder/sample-programs-website/issues/70
[python-online-repl]: https://repl.it/languages/python3
[python-website]: https://www.python.org/
[python-wiki]: https://en.wikipedia.org/wiki/Python_(programming_language)
[reverse-a-string-article]: https://therenegadecoder.com/code/reverse-a-string-in-python/
[trc-python-docs]: https://sample-programs.therenegadecoder.com/languages/python/
[quine-article-issue]: https://github.com/TheRenegadeCoder/sample-programs-website/issues/223

[0]: https://therenegadecoder.com/code/hello-world-in-python/
[1]: https://therenegadecoder.com/code/fizz-buzz-in-python/
[2]: https://therenegadecoder.com/code/reverse-a-string-in-python/
[3]: https://github.com/jrg94/sample-programs/issues/319
[4]: https://github.com/jrg94/sample-programs/issues/111
[5]: https://github.com/jrg94/sample-programs/blob/ed000670bc5ecd2778a65571752ec983be7a14e7/archive/p/python/fizz-buzz.py#L2
[6]: https://en.wikipedia.org/wiki/Python_(programming_language)
[7]: https://www.python.org/
[8]: https://repl.it/languages/python3
[9]: https://github.com/jrg94/sample-programs/blob/ed000670bc5ecd2778a65571752ec983be7a14e7/archive/p/python/fizz-buzz.py#L3
[10]: https://github.com/jrg94/sample-programs/blob/d91bd1c507723448314d18a377c1ac729172ddf6/archive/p/python/game-of-life.py#L24
[11]: https://github.com/jrg94/sample-programs/blob/d91bd1c507723448314d18a377c1ac729172ddf6/archive/p/python/game-of-life.py#L1
Expand All @@ -137,7 +140,6 @@ Welcome to Sample Programs in Python!
[27]: https://github.com/Boot-Error/sample-programs/blob/ced2e54804d8f801aee2b37fee6f443a6432cb9b/archive/p/python/lcs.py#L16
[28]: https://github.com/Boot-Error/sample-programs/blob/ced2e54804d8f801aee2b37fee6f443a6432cb9b/archive/p/python/lcs.py#L17
[29]: https://therenegadecoder.com/code/file-io-in-python/
[30]: https://github.com/TheRenegadeCoder/sample-programs/issues/765
[31]: https://github.com/TheRenegadeCoder/sample-programs/issues/811
[32]: https://github.com/TheRenegadeCoder/sample-programs/issues/849
[33]: https://github.com/TheRenegadeCoder/sample-programs/issues/852
Expand All @@ -147,7 +149,6 @@ Welcome to Sample Programs in Python!
[37]: https://github.com/TheRenegadeCoder/sample-programs/issues/864
[38]: https://github.com/TheRenegadeCoder/sample-programs/issues/867
[39]: https://github.com/TheRenegadeCoder/sample-programs/issues/870
[40]: https://github.com/TheRenegadeCoder/sample-programs/issues/1161
[41]: https://www.python.org/dev/peps/pep-0020/
[42]: https://github.com/TheRenegadeCoder/sample-programs/blob/master/archive/p/python/longest_palindrome_substring.py
[43]: https://github.com/TheRenegadeCoder/sample-programs/issues/1536
Expand All @@ -167,4 +168,4 @@ Welcome to Sample Programs in Python!
[57]: https://github.com/TheRenegadeCoder/sample-programs/blob/master/archive/p/python/binary_search.py#L15
[58]: https://github.com/TheRenegadeCoder/sample-programs/blob/master/archive/p/python/longest_palindrome_substring.py#L17
[59]: https://github.com/TheRenegadeCoder/sample-programs/blob/master/archive/p/python/prime_number.py#L7
[60]: https://github.com/TheRenegadeCoder/sample-programs/blob/master/archive/p/python/rot_13.py#L7
[60]: https://github.com/TheRenegadeCoder/sample-programs/blob/master/archive/p/python/rot_13.py#L7
52 changes: 0 additions & 52 deletions archive/p/python/anagram.py

This file was deleted.

24 changes: 0 additions & 24 deletions archive/p/python/first_non_repeating_character.py

This file was deleted.

8 changes: 0 additions & 8 deletions archive/p/python/palindrome.py

This file was deleted.

25 changes: 0 additions & 25 deletions archive/p/python/zen_of_python.py

This file was deleted.

0 comments on commit 2b67a39

Please sign in to comment.