#include <iostream>
#include <string>
#include <limits.h>
using namespace std;
int main()
{
string a, b; cin >> a >> b;
int aLength = a.size(), bLength = b.size();
int res = INT_MAX;
for (int i = 0; i <= bLength - aLength; i++)
{
int cnt = 0;
for (int j = 0; j < aLength; j++)
{
if (a[j] != b[j + i])
cnt++;
}
res = min(res, cnt);
}
cout << res;
}
'코딩테스트 > 백준' 카테고리의 다른 글
[골5] 9251 - LCS (0) | 2022.11.17 |
---|---|
[실1] 15724 - 주지수 (0) | 2022.10.24 |
[실4] 3986 - 좋은 단어 (0) | 2022.10.23 |
[실2] 11725 - 트리의 부모 찾기 (0) | 2022.10.07 |
[실3] 15654 - N과 M (5) (0) | 2022.10.07 |