목록인프런 (70)
개발자는 기록이 답이다

https://cote.inflearn.com/contest/10/problem/01-02 OnlineJudge cote.inflearn.com (위의 링크는 인프런 로그인 후, 해당 강의를 사지 않으면 접속이 되지 않습니다) 2. 대소문자 변환 예시 입력 1 StuDY 예시 출력 1 sTUdy 내가 푼 풀이 (Time : 145ms, Memory : 27MB) import java.util.Scanner; public class Main { public String solution(String str) { StringBuilder sb = new StringBuilder(); for (int i = 0; i < str.length(); i++) { if (str.charAt(i) == Character..

https://cote.inflearn.com/contest/10/problem/01-01 OnlineJudge cote.inflearn.com (위의 링크는 인프런 로그인 후, 해당 강의를 사지 않으면 접속이 되지 않습니다) 1. 문자 찾기 예시 입력 1 Computercooler c 예시 출력 1 2 내가 푼 풀이 import java.util.Scanner; public class Main { public int solution(String str, char c) { int ans = 0; String lowerStr = str.toLowerCase(); String lowerCase = String.valueOf(c).toLowerCase(); for (int i = 0; i < lowerStr...