79637674

Date: 2025-05-25 12:50:13
Score: 1.5
Natty:
Report link
def master_yoda(text):
    for x in text:
        a=text.split()
        b=" ".join(a[::-1])
        
    return b

#This is my answer as a beginner w/o using built in functions
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Gutsy_Buoy