remove complexity by replacing ```python if condition: # if code else: # else code ``` with ```python if condition: # if code return # else code ```
remove complexity by replacing
with