
Algorithm - 대소문자 변환
·
👩🏻💻 𝐋𝐚𝐧𝐠𝐮𝐚𝐠𝐞/⠀⠀⠀⠀ Aʟɢᴏʀɪᴛʜᴍ
👇 공부한 자료들의 실제 소스파일들을 기록해논 공간입니다 👇 GitHub - gayulz/StudyHistory: 나의 공부 기록 commit 나의 공부 기록 commit . Contribute to gayulz/StudyHistory development by creating an account on GitHub. github.com 대소문자 변환 문제 강의 : 풀이 과정 class Main { public String solution(String str) { String answer = ""; for(char x : str.toCharArray()){ if(Character.isLowerCase(x)) { answer += Character.toUpperCase(x); } else { answer +..