공부방(71)
-
[코딩테스트연습] 코딩테스트 입문 > Lv.0 정수부분
문제 설명 문제 풀이 class Solution { public int solution(double flo) { return (int)flo; } }
2024.03.23 -
[코딩테스트연습] 코딩테스트 입문 > Lv.0 flag에 따라 다른 값 반환하기
문제 설명 문제 풀이 class Solution { public int solution(int a, int b, boolean flag) { return (flag==true) ? a+b : a-b ; } }
2024.03.23 -
[코딩테스트연습] 코딩테스트 입문 > Lv.0 n보다 커질 때까지 더하기
문제 설명 문제 풀이 class Solution { public int solution(int[] numbers, int n) { int answer = 0; for(int num: numbers){ answer += num; if(answer>n) return answer; } return answer; } }
2024.03.23 -
[코딩테스트연습] 코딩테스트 입문 > Lv.0 문자열을 정수로 변환하기
문제 설명 문제 풀이 class Solution { public int solution(String n_str) { int answer = Integer.parseInt(n_str); return answer; } }
2024.03.23 -
[코딩테스트연습] 코딩테스트 입문 > Lv.0 n의 배수 고르기
문제 설명 문제 풀이 numlist에서 하나씩 가져와서 n의 배수인지 확인하려고 했다. class Solution { public int[] solution(int n, int[] numlist) { int[] answer = {}; for(int num: numlist){ if(num%n==0) answer.append(num); } return answer; } } 하지만 아무생각 없이 파이썬 문법마냥 작성해버렸다.. 자바에서는 배열에 어떻게 새로운 원소를 추가할까? 방법을 찾아보니 여러가지 방법이 있었다. 그 중 배열을 List로 변환하여 .add()를 사용하는 방법이 있었다. import java.util.*; class Solution { public int[] solution(int n, in..
2024.03.23 -
[기사읽기]Seoul rises one spot to 10th in Global Financial Centres Index
💥모르는 단어 영어 한국어 이미지 overtaking 추월 biannually 반년마다, 연 2회의 competitiveness 경쟁력, 경쟁적인 것 reputation 평판, 명성 conducted on 경영하는 revitalize 새로운 활력을 주다, 재활성화시키다. district 지구, 구역, 지역 competitivenes C💭mment After I read this article, I get to know about the evalutaion criteria. It's very novel. And then, this rankings affect many things to Korea attractiveness and competitiveness. I wish Korea get the high ..
2024.03.21