[백준 2902] KMP는 왜 KMP일까?

Junyoung Park·2022년 9월 5일
0

코딩테스트

목록 보기
608/631
post-thumbnail

1. 문제 설명

KMP는 왜 KMP일까?

2. 문제 분석

맵과 조인으로 풀었다.

3. 나의 풀이

import Foundation

let memo = readLine()!.split(separator: "-").map{String($0.first!)}.joined()
print(memo)
profile
JUST DO IT

0개의 댓글