Skip to content

Commit 2b67a39

Browse files
authored
Cleaned Up Python Folder in Repo (#2171)
* 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
1 parent 93fab4a commit 2b67a39

File tree

6 files changed

+24
-146
lines changed

6 files changed

+24
-146
lines changed

archive/p/python/Dockerfile

Lines changed: 0 additions & 14 deletions
This file was deleted.

archive/p/python/README.md

Lines changed: 24 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,36 @@
11
# Sample Programs in Python
22

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

56
## Sample Programs
67

7-
- [Anagram in Python][40]
88
- [Baklava in Python][22]
99
- Solution borrowed from @erayak via the [baklava repo][21]
1010
- [Binary Search][31]
1111
- [Bubble Sort in Python][31]
1212
- Capitalize in Python
13+
- [Convex Hull in Python][44]
1314
- [Even Odd in Python][32]
1415
- [Factorial in Python][33]
1516
- [Fibonacci Sequence in Python][24]
1617
- [File IO in Python][29]
17-
- [Fizz Buzz in Python][1]
18-
- [Game of Life in Python][4]
19-
- [Hello World in Python][0]
18+
- [Fizz Buzz in Python][fizz-buzz-article]
19+
- [Game of Life in Python][game-of-life-article-issue]
20+
- [Hello World in Python][hello-world-article]
2021
- [Insertion Sort in Python][34]
21-
- [Job Sequencing with Deadlines in Python][30]
22+
- [Job Sequencing with Deadlines in Python][job-sequencing-article-issue]
2223
- [Longest Common Subsequence][26]
2324
- [Longest Palindromic Subsequence][42]
2425
- [Merge Sort in Python][35]
2526
- [Minimum Spanning Tree][43]
2627
- [Prime Number in Python][36]
2728
- [Quick Sort in Python][37]
28-
- [Quine in Python][3]
29-
- [Reverse a String in Python][2]
29+
- [Quine in Python][quine-article-issue]
30+
- [Reverse a String in Python][reverse-a-string-article]
3031
- [Roman Numberal Conversion in Python][25]
3132
- [ROT-13 in Python][38]
3233
- [Selection Sort in Python][39]
33-
- [Convex Hull in Python][44]
3434
- [Sleep sort in Python][45]
3535

3636
## Fun Facts
@@ -103,19 +103,22 @@ Welcome to Sample Programs in Python!
103103

104104
## References
105105

106-
- [Python Wiki][6]
107-
- [Python Docs][7]
108-
- [Python REPL][8]
106+
- [Python Wiki][python-wiki]
107+
- [Python Docs][python-website]
108+
- [Python REPL][python-online-repl]
109+
110+
[fizz-buzz-article]: https://therenegadecoder.com/code/fizz-buzz-in-python/
111+
[game-of-life-article-issue]: https://github.com/jrg94/sample-programs/issues/111
112+
[hello-world-article]: https://therenegadecoder.com/code/hello-world-in-python/
113+
[job-sequencing-article-issue]: https://github.com/TheRenegadeCoder/sample-programs-website/issues/70
114+
[python-online-repl]: https://repl.it/languages/python3
115+
[python-website]: https://www.python.org/
116+
[python-wiki]: https://en.wikipedia.org/wiki/Python_(programming_language)
117+
[reverse-a-string-article]: https://therenegadecoder.com/code/reverse-a-string-in-python/
118+
[trc-python-docs]: https://sample-programs.therenegadecoder.com/languages/python/
119+
[quine-article-issue]: https://github.com/TheRenegadeCoder/sample-programs-website/issues/223
109120

110-
[0]: https://therenegadecoder.com/code/hello-world-in-python/
111-
[1]: https://therenegadecoder.com/code/fizz-buzz-in-python/
112-
[2]: https://therenegadecoder.com/code/reverse-a-string-in-python/
113-
[3]: https://github.com/jrg94/sample-programs/issues/319
114-
[4]: https://github.com/jrg94/sample-programs/issues/111
115121
[5]: https://github.com/jrg94/sample-programs/blob/ed000670bc5ecd2778a65571752ec983be7a14e7/archive/p/python/fizz-buzz.py#L2
116-
[6]: https://en.wikipedia.org/wiki/Python_(programming_language)
117-
[7]: https://www.python.org/
118-
[8]: https://repl.it/languages/python3
119122
[9]: https://github.com/jrg94/sample-programs/blob/ed000670bc5ecd2778a65571752ec983be7a14e7/archive/p/python/fizz-buzz.py#L3
120123
[10]: https://github.com/jrg94/sample-programs/blob/d91bd1c507723448314d18a377c1ac729172ddf6/archive/p/python/game-of-life.py#L24
121124
[11]: https://github.com/jrg94/sample-programs/blob/d91bd1c507723448314d18a377c1ac729172ddf6/archive/p/python/game-of-life.py#L1
@@ -137,7 +140,6 @@ Welcome to Sample Programs in Python!
137140
[27]: https://github.com/Boot-Error/sample-programs/blob/ced2e54804d8f801aee2b37fee6f443a6432cb9b/archive/p/python/lcs.py#L16
138141
[28]: https://github.com/Boot-Error/sample-programs/blob/ced2e54804d8f801aee2b37fee6f443a6432cb9b/archive/p/python/lcs.py#L17
139142
[29]: https://therenegadecoder.com/code/file-io-in-python/
140-
[30]: https://github.com/TheRenegadeCoder/sample-programs/issues/765
141143
[31]: https://github.com/TheRenegadeCoder/sample-programs/issues/811
142144
[32]: https://github.com/TheRenegadeCoder/sample-programs/issues/849
143145
[33]: https://github.com/TheRenegadeCoder/sample-programs/issues/852
@@ -147,7 +149,6 @@ Welcome to Sample Programs in Python!
147149
[37]: https://github.com/TheRenegadeCoder/sample-programs/issues/864
148150
[38]: https://github.com/TheRenegadeCoder/sample-programs/issues/867
149151
[39]: https://github.com/TheRenegadeCoder/sample-programs/issues/870
150-
[40]: https://github.com/TheRenegadeCoder/sample-programs/issues/1161
151152
[41]: https://www.python.org/dev/peps/pep-0020/
152153
[42]: https://github.com/TheRenegadeCoder/sample-programs/blob/master/archive/p/python/longest_palindrome_substring.py
153154
[43]: https://github.com/TheRenegadeCoder/sample-programs/issues/1536
@@ -167,4 +168,4 @@ Welcome to Sample Programs in Python!
167168
[57]: https://github.com/TheRenegadeCoder/sample-programs/blob/master/archive/p/python/binary_search.py#L15
168169
[58]: https://github.com/TheRenegadeCoder/sample-programs/blob/master/archive/p/python/longest_palindrome_substring.py#L17
169170
[59]: https://github.com/TheRenegadeCoder/sample-programs/blob/master/archive/p/python/prime_number.py#L7
170-
[60]: https://github.com/TheRenegadeCoder/sample-programs/blob/master/archive/p/python/rot_13.py#L7
171+
[60]: https://github.com/TheRenegadeCoder/sample-programs/blob/master/archive/p/python/rot_13.py#L7

archive/p/python/anagram.py

Lines changed: 0 additions & 52 deletions
This file was deleted.

archive/p/python/first_non_repeating_character.py

Lines changed: 0 additions & 24 deletions
This file was deleted.

archive/p/python/palindrome.py

Lines changed: 0 additions & 8 deletions
This file was deleted.

archive/p/python/zen_of_python.py

Lines changed: 0 additions & 25 deletions
This file was deleted.

0 commit comments

Comments
 (0)