added 3rd party packages, elog, bigtree

This commit is contained in:
2024-02-27 15:40:00 +01:00
parent 277c22f800
commit 6b59fe16ce
69 changed files with 17449 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
def whoami() -> str:
"""Groot utils
Returns:
(str)
"""
return "I am Groot!"
def speak_like_groot(sentence: str) -> str:
"""Convert sentence into Groot langauge
Args:
sentence (str): Sentence to convert to groot language
Returns:
(str)
"""
return " ".join([whoami() for _ in range(len(sentence.split()))])