Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #693

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ Text
[[Bhavika(C)]](https://github.com/Bhavikaso/Project1/blob/master/reverseString.c) [[turlapatykaushik (Python)]](https://github.com/turlapatykaushik/Programs-and-codes/blob/master/problems/Reverse_String.py) [[neivin (Python)]](https://github.com/neivin/projects/blob/master/text/reverse.py) [[nokafor(C)]](https://github.com/nokafor/personal-development/blob/master/reverseString.c)[[mandeepbhutani (Python)]](https://github.com/mandeepbhutani/Sample-Projects/blob/master/ReverseString.py) [[elifoster (Perl)]](https://github.com/elifoster/General-Perl/blob/master/src/reverse.pl)
[[eush77(Befunge)]](https://github.com/eush77/Projects-Solutions/blob/solutions/Befunge/string-reverse.bf) [[sethlugibihl (Python)]](https://github.com/sethlugibihl/Python-Solutions/blob/master/StringReverse.py)[[chrislyc1991(C++)]](https://github.com/chrislyc1991/project-1/blob/master/reversestring.cpp) [[kingballer29 (Scala)]](https://github.com/kingballer29/Programming/blob/master/stringReverse.scala)[[rnikhil275 (Python)]](https://github.com/rnikhil275/scripts/blob/master/string.py)
[Mohammadhassan (Python)]](https://github.com/mohammadhassanj/project/blob/master/reverse-string.py)
[[Faopaw(JavaScript)]](https://github.com/Faopaw/Javascript-Projects/blob/main/reverseString.js)

**Pig Latin** - Pig Latin is a game of alterations played on the English language game. To create the Pig Latin form of an English word the initial consonant sound is transposed to the end of the word and an ay is affixed (Ex.: "banana" would yield anana-bay). Read Wikipedia for more information on rules. [[Drhealsgood (Python)]](https://github.com/Drhealsgood/miniprojects/blob/master/text_projects/string_editing.py) [[JLukeC (Python)]](https://github.com/jLukeC/mega-project-list/blob/master/python/pig_latin.py) [[JLukeC (Java)]](https://github.com/jLukeC/mega-project-list/blob/master/java/src/projects/PigLatin.java) [[petehuang (Ruby)]](https://github.com/petehuang/Projects/blob/master/Text/pig_latin.rb) [[jotaki (C)]](https://github.com/jotaki/mini-projects/blob/master/strings/piglatin.c) [[taycaldwell (Java)]](https://github.com/taycaldwell/Projects/blob/master/Text/PigLatin.java) [[anggiaj (Go)]](https://github.com/anggiaj/Projects/blob/master/Text/piglatin.go) [[edeng (Java)]](https://github.com/edeng/Problems/blob/master/PigLatin.java) [[dawitelias (Python)]](https://github.com/dawitelias/Projects/blob/master/Text/convertToPyg.py)
[[sespino1 (Java)]](https://github.com/Sespino1/Java-Projects/blob/master/PigLatin.java) [[JaredCubilla (Javascript)]](https://github.com/JaredCubilla/Projects/blob/master/Javascript/text/pigLatin.js)[[mandeepbhutani (Python)]](https://github.com/mandeepbhutani/Sample-Projects/blob/master/PigLatin.py) [[elifoster (Perl)]](https://github.com/elifoster/General-Perl/blob/master/src/pig_latin.pl)[[smac89 (MIPS)]](https://gist.github.com/smac89/9982a0a62609a32c05e5#file-piglatin-asm)[[snitz70(Python)]](https://github.com/snitz70/Projects-Solutions/blob/master/pig_latin.py) [[viktorahlstrom (Bash)]](https://github.com/viktorahlstrom/all/blob/master/coding-problems-solved/projects-solutions/atinlay.sh) [[viktorahlstrom (Python)]](https://github.com/viktorahlstrom/all/blob/master/python/atinlay.py)[[viktorahlstrom (Java)]](https://github.com/viktorahlstrom/all/blob/master/java/piglatin.java)[[eush77(Befunge)]](https://github.com/eush77/Projects-Solutions/blob/solutions/Befunge/piglatin.bf) [[pinkninjajess (Ruby)]](https://github.com/pinkninjajess/Projects/blob/master/JV_Solutions/pigLatin.rb)
Expand All @@ -122,6 +123,7 @@ Text
[[turlapatykaushik (Python)]](https://github.com/turlapatykaushik/Programs-and-codes/blob/master/problems/palindrome.py)[[Andrs14 (Python)]](https://github.com/Andrs14/Projects/blob/master/Text/palindrome.py)[[mandeepbhutani (Python)]](https://github.com/mandeepbhutani/Sample-Projects/blob/master/Palindrome.py) [[nrward (Perl)]](https://github.com/nrward/Projects/blob/master/check-if-palindrome.pl) [[kingballer29 (C++)]](https://github.com/kingballer29/Programming/blob/master/Palindrome.cpp) [[viktorahlstrom (Bash)]](https://github.com/viktorahlstrom/all/blob/master/coding-problems-solved/projects-solutions/pdrome.sh)
[[eush77(Befunge)]](https://github.com/eush77/Projects-Solutions/blob/solutions/Befunge/check-palindrome.bf)[[viktorahlstrom (Python)]](https://github.com/viktorahlstrom/all/blob/master/python/pdrome.py)[[rnikhil275 (Python]](https://github.com/rnikhil275/scripts/blob/master/string.py)
[[Mohammadhassanj (Python)]](https://github.com/mohammadhassanj/project/blob/master/palindrome.py)
[[Faopaw(JavaScript)]](https://github.com/Faopaw/Javascript-Projects/blob/main/CheckpPallindrome.js)

**Count Words in a String** - Counts the number of individual words in a string. For added complexity read these strings in from a text file and generate a summary. [[Drhealsgood (Python)]](https://github.com/Drhealsgood/miniprojects/blob/master/text_projects/string_editing.py) [[JLukeC (Python)]](https://github.com/jLukeC/mega-project-list/blob/master/python/count_words.py) [[JLukeC (Java)]](https://github.com/jLukeC/mega-project-list/blob/master/java/src/projects/CountWords.java) [[tel (Haskell)]](https://github.com/tel/Projects/blob/master/Text/CountWords.hs) [[petehuang (Ruby)]](https://github.com/petehuang/Projects/blob/master/Text/count_words.rb) [[rasppie (Python)]](https://github.com/rasppie/pyprojects/blob/master/word_counter.py) [[JaredCubilla (Javascript)]](https://github.com/JaredCubilla/Projects/blob/master/Javascript/text/countWordsInAString.js)
[[turlapatykaushik (Python)]](https://github.com/turlapatykaushik/Programs-and-codes/blob/master/problems/count_word_string.py)[Abhi0725(Python)](https://github.com/Abhi0725/word_counter/blob/master/word_counter.py)
Expand Down