상세 컨텐츠

본문 제목

[1일1커밋 2D] LeetCode SQL 50 & 백준 JAVA 1085

취준/2. 코딩테스트

by ranlan 2024. 9. 3. 19:20

본문

728x90

퇴근 이후 약속까지 두시간정도 비어서 그동안 챌린지 완수하려고 노트북까지 챙겨서 출근했다. 동료 보고있나 

 

LeetCode SQL 50

Basic Aggregate Functions | 620. Not Boring Movies

select *
from Cinema
where id%2 = 1
and description != "boring"
order by rating desc;

 

Sorting and Grouping | 2356. Number of Unique Subjects Taught by Each Teacher

select teacher_id, count(distinct subject_id) cnt
from Teacher
group by teacher_id

 

Select | 595. Big Countries

select name, population, area
from World
where area >= 3000000
or population >= 25000000

 

쉬운 문제라고,, 냅다 예시만 보고 풀어서 꼬이지 않기,,, 쉬워보여도 문제 꼼꼼히 읽기,, ✍🏻

 


 

BaekJoon 백준 

1085. 직사각형에서 탈출 https://www.acmicpc.net/problem/1085

브론즈3 | 수학, 기하학
import java.util.Scanner;

/**
 * 1085. 직사각형에서 탈출 
 */
public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		int x = sc.nextInt();
		int y = sc.nextInt();
		int w = sc.nextInt();
		int h = sc.nextInt();

		System.out.println(Math.min(Math.min(w-x, x), Math.min(h-y, y)));
	}
}

 

약속까지 시간이 많이 안남은 관계로 브론즈3 레벨순에서 가장 쉬운 문제 선택

 

 

728x90

관련글 더보기

댓글 영역