정신과 시간의 방

2025/07/15 1

카테고리 설명
  • 문제https://school.programmers.co.kr/learn/courses/30/lessons/43163 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 풀이코드// 프로그래머스 - 단어 변환 #include #include #include #include using namespace std;// 두 단어가 한 글자만 다른지 확인하는 함수 bool CheckDiff(const string& a, const string& b){ int count = 0; for (int i = 0; i words) { int answer = 0; // 타겟 단어가 단어 목록에 없는 경우 변환 자체..