https://www.codewars.com/kata/54bf1c2cd5b56cc47f0007a1/train/python Codewars: Train your coding skills Codewars is where developers achieve code mastery through challenge. Train on kata in the dojo and reach your highest potential. www.codewars.com 문자열에서 대소문자 상관없이 2개 이상 반복되는 문자의 개수를 찾는 문제이다. 문제를 풀기 위해 필요한 것 1. 문자열을 대문자나 소문자로 변형 2. 중복되는 문자 제거 3. 문자열에 존재하는 문자 세기 더보기 문자열 대문자 : 문자열.upper() 문자열 소문자 :..