Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- vm인스턴스생성
- 재귀함수
- OOP
- MySQL
- 성능테스트툴
- 프로그래머스
- 코드스테이츠
- 11659
- 백준 11659
- 코드스테이츠 백엔드
- 백준
- 코딩테스트
- List.of
- java
- 투포인터알고리즘
- 클라우드에서 도커 실행하기
- 인텔리제이
- 구간합구하기
- GCP
- 알고리즘
- 자바
- 버블정렬
- Spring MVC 구성요소
- Spring MVC 동작원리
- String.valueOf()
- 싱글톤패턴
- Spring Web MVC
- 스택
- Array.asList
- 재귀와반복문
Archives
- Today
- Total
목록Big Countries (1)
순간을 기록으로
[LeetCode] Big Countries | MySQL
문제 - name, population, and area of the big countires --> select name, population, area - area은 적어도 3백만km^2이다. --> area > 3000000 -또는 --> or - population은 적어도 2천5백만이다. --> population > 25000000 풀이 select name, population, area from world where area >= 3000000 or population >= 25000000; 출처: https://leetcode.com/problems/big-countries/ Big Countries - LeetCode Level up your coding skills and quickl..
Problem Solving
2022. 4. 8. 12:34