[2024 하계모각코] 3주차 결과
파이썬 대신 자바를 이용해 코딩테스트를 준비하기로 했다.
파이썬을 풀면서 느낀 건데 자꾸만 자바를 기준으로 자료형이나 구조가 생각나는 경향이 있더라
대신 늦은 만큼 3문제를 풀며 감을 잡기 위해 노력했다.
https://shushucoding.tistory.com/261
[백준 1302] 베스트셀러
문제https://www.acmicpc.net/problem/1302내가 작성한 코드import java.util.*;import java.io.*;public class qor1302 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in))
shushucoding.tistory.com
https://shushucoding.tistory.com/262
[백준 1764] 듣보잡
문제https://www.acmicpc.net/problem/1764 내가 작성한 코드import java.util.*;import java.io.*;public class qor1764 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in
shushucoding.tistory.com
https://shushucoding.tistory.com/263
[백준 1620] 나는야 포켓몬 마스터
문제https://www.acmicpc.net/problem/1620내가 작성한 코드import java.util.*;import java.io.*;public class qor1620 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in))
shushucoding.tistory.com
세 문제 모두 "자료 구조"에 관한 문제였다
그래서인지 List, Map, Set, Collections과 같은 것들을 많이 사용했다.