Skip to content
Snippets Groups Projects
Select Git revision
  • 8aa933af064243311ab8d5d051175d9b627de750
  • main default protected
2 results

least_suffix.py

Blame
  • Forked from Brady James Garvin / single_recursion_lab
    1 commit behind the upstream repository.
    least_suffix.py 162 B
    def least_suffix_helper(strings):
        return ''.join(strings)  # Stub
    
    
    def least_suffix(strings):
        result, _ = least_suffix_helper(strings)
        return result