목록알고리즘 (60)
개발자는 기록이 답이다
https://cote.inflearn.com/contest/10/problem/01-04 OnlineJudge cote.inflearn.com (위의 링크는 인프런 로그인 후, 해당 강의를 사지 않으면 접속이 되지 않습니다) 4. 단어 뒤집기 예시 입력 1 3 good Time Big 예시 출력 1 doog emiT giB 내가 푼 풀이 (Time: 114ms, Memory: 26MB) - for 문으로 문자열을 거꾸로 돌려서 StringBuilder에 붙여줬다. import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public String solution..
https://cote.inflearn.com/contest/10/problem/01-03 OnlineJudge cote.inflearn.com (위의 링크는 인프런 로그인 후, 해당 강의를 사지 않으면 접속이 되지 않습니다) 3. 문장 속 단어 예시 입력 1 it is time to study 예시 출력 1 study 내가 푼 풀이 ( Time : 156ms, Memory 27MB ) - 최댓값을 이용해서 풀었다. - 사실 나는 문제를 제대로 안읽어서, 가장 길이가 긴 단어가 여러개일 경우라는 조건문을 못 봤는데, 다행히 한번 최대값을 구하면 동일한 길이를 마주할때 갱신해주는 코드가 아니라서 잘 넘어간거 같다. if (max < strings[i].length()) import java.util.Sca..
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...