An open API service providing repository metadata for many open source software ecosystems.

GitHub topics: string-challenges-codecademy

candytale55/reverse_string_Py_3_JS

Function reverse_string() takes a string named _word_ as a parameter. The function should return _word_ in reverse.

Language: JavaScript - Size: 2.93 KB - Last synced at: 2 months ago - Pushed at: about 4 years ago - Stars: 0 - Forks: 0

candytale55/Is_X_length_Py_3

Function takes a string named _sentence_ and an integer named _x_ as parameters. It returns _True_ if every word in sentence has a length greater than or equal to _x_.

Language: Python - Size: 2.93 KB - Last synced at: 2 months ago - Pushed at: over 4 years ago - Stars: 0 - Forks: 0

candytale55/substring_between_letters_Py_3

substring_between_letters() takes a string named _word_, a single character named _start_, and another character named _end_. This function should return the substring between the first occurrence of _start_ and _end_ in word. If _start_ or _end_ are not in _word_, the function should return _word_. For example, substring_between_letters("apple", "p", "e") should return "pl".

Language: Python - Size: 1.95 KB - Last synced at: 2 months ago - Pushed at: over 4 years ago - Stars: 0 - Forks: 0

candytale55/unique_english_letters_Py_3

unique_english_letters takes a string word as a parameter. The function should return the total number of unique letters in the string. Uppercase and lowercase letters should be counted as different letters. The list of every uppercase and lower case letter in the English alphabet is in a string "letters".

Language: Python - Size: 3.91 KB - Last synced at: 2 months ago - Pushed at: over 4 years ago - Stars: 0 - Forks: 0

candytale55/add_exclamation_Py_3

add_exclamation() takes one parameter named _word_. This function should add exclamation points to the end of _word_ until word is 20 characters long. If _word_ is already at least 20 characters long, just return _word_.

Language: Python - Size: 1000 Bytes - Last synced at: 2 months ago - Pushed at: over 4 years ago - Stars: 0 - Forks: 0

candytale55/make_spoonerism_Py_3

function make_spoonerism() takes two strings as parameters named _word1_ and _word2_. Spoonerism switch the first letters of each word and returns the two new words as a single string separated by a space.

Language: Python - Size: 2.93 KB - Last synced at: 2 months ago - Pushed at: over 4 years ago - Stars: 0 - Forks: 0

candytale55/every_other_letter_Py_3

function every_other_letter() takes a string named _word_ as a parameter. The function returns a string containing every other letter in word.

Language: Python - Size: 1000 Bytes - Last synced at: 2 months ago - Pushed at: over 4 years ago - Stars: 0 - Forks: 0

candytale55/check_for_name_in_sentence_Py_3

check_for_name() takes two strings as parameters named _sentence_ and _name_. The function should return _True_ if _name_ appears in sentence in all lowercase letters, all uppercase letters, or with any mix of uppercase and lowercase letters. The function should return _False_ otherwise.

Language: Python - Size: 3.91 KB - Last synced at: 2 months ago - Pushed at: over 4 years ago - Stars: 0 - Forks: 0