diff --git a/Balanced_parenth.py b/Balanced_parenth.py new file mode 100644 index 0000000..9d74acd --- /dev/null +++ b/Balanced_parenth.py @@ -0,0 +1 @@ +def Balanced_parenth \ No newline at end of file diff --git a/fibonacci.py b/fibonacci.py new file mode 100644 index 0000000..e69de29 diff --git a/find_match.py b/find_match.py new file mode 100644 index 0000000..5e3be0e --- /dev/null +++ b/find_match.py @@ -0,0 +1,31 @@ +# given a list of words, and a word that has some letters missing, but '.' in place of the missing letters (e.g "h.llo), +# return a word from the list that matches the imcomplete word (e.g. "hello") + + + + + +# function because we are asked to find a word out of a list +# Not coplicated enough for a class. No inheritance logic etc.locals + + +# return type -> string: "return a word from the list" +# name of the function -> call this whatever "find_word_match" +# params/input -> list word +# body, main logic: conditions, loops + + +# create a list with a missing letter + +# find the word with a missin letter "." +# loop through + + +def Find_word_match (words: List[str], match: str) -> str: + + +# c++ std:: string FindWordMatch( + + + + diff --git a/reverse_v.py b/reverse_v.py new file mode 100644 index 0000000..e69de29