https://school.programmers.co.kr/learn/courses/30/lessons/120808 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 정답class Solution { public int[] solution(int numer1, int denom1, int numer2, int denom2) { int a = (numer1 * denom2) + (numer2 * denom1); int b = denom1 * denom2; int focus = 0; if(a>=b){ focus=b; //focus..
Java 컬렉션 프레임워크Java 컬렉션 프레임워크(Java Collections Framework, JCF)는 데이터를 효율적으로 저장, 관리, 검색하는 표준화된 방법을 제공하는 클래스와 인터페이스의 집합입니다. 이 프레임워크는 크게 Collection 계층과 Map 계층이라는 두 가지 메인 루트로 나뉩니다. 1.Collection 계층(단일 요소 저장)Collection 인터페이스는 단일 요소(데이터 값)의 그룹을 다루는 최상위 부모입니다. 이 계층은 데이터를 저장하는 방식과 규칙에 따라 List, Set, Queue 세 가지 주요 인터페이스로 분화됩니다.인터페이스특징중복허용순서 보장주요 구현 클래스List순서대로 저장되며, 인덱스를 통해 접근 가능OO(삽입 순서)ArrayList, LinkedLis..
Web Storage 완벽 정리: localStorage vs sessionStorage 차이점 분석프론트엔드 개발에서 사용자 데이터를 클라이언트에 저장하고 관리하는 것은 매우 중요합니다. 이때 활용되는 것이 바로 Web Storage API이며, 그 중심에는 localStorage와 sessionStorage가 있습니다. 이 둘은 비슷해 보이지만, 데이터의 영속성(Persistence)과 접근 범위에 결정적인 차이가 있습니다.이 포스팅에서는 localStorage와 sessionStorage의 공통점과 차이점을 명확히 비교하여, 어떤 상황에 어떤 스토리지를 사용해야 할지 확실히 이해할 수 있도록 정리했습니다.🔍 공통점: Web Storage의 특징localStorage와 sessionStorage는 ..
next()공백(스페이스/탭/개행)을 기준으로 다음 토큰 하나만 읽습니다.앞쪽 공백은 건너뜁니다.띄어쓰기가 있는 문자열은 중간에서 끊깁니다.import java.util.Scanner;public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); // 예시 입력(한 줄 또는 여러 줄 가능): // Hello world 123 System.out.print("토큰 3개를 읽습니다: "); String t1 = sc.next(); // "Hello" String t2 = sc.next(); // "world" ..
SELECT inet_server_addr() AS server_ip, inet_client_addr() AS client_ip, inet_server_port() AS port, version() AS pg_version, current_setting('TimeZone') AS tz, pg_postmaster_start_time() AS postgres_started_at, current_timestamp AS current_ts, clock_timestamp() AS wall_clock;
LLM 개발환경 세팅시스템 환경그래픽카드 : Intel(R) UHD Graphics 770 128MB // GPU는 거의 없다고 보시면됩니다...램 : 16.0GB프로세서 : 12th Gen Intel(R) Core(TM) i7-12700(2.10 GHz) 사전준비1. Ollama 설치https://ollama.com/download Download Ollama on macOSDownload Ollama for macOSollama.com 2. VSCode 설치https://code.visualstudio.com/download Download Visual Studio Code - Mac, Linux, WindowsVisual Studio Code is free and available on your f..