Skip to content

Latest commit

 

History

History
12 lines (6 loc) · 352 Bytes

1544-yongjoonseo.md

File metadata and controls

12 lines (6 loc) · 352 Bytes

1544. Make The String Great

solution 1

시간복잡도 : O(N^2)

알고리즘 : 재귀

풀이 설명 : s에서 bad string으로 만드는 부분을 제외한 나머지 문자열 부분을 다시 함수의 입력으로 하여 good string을 반환할 때까지 재귀함수를 호출합니다.

소스코드 : link