hello jiniworld

hello jiniworld

  • hello jiniworld (220)
    • Spring (59)
      • Basic (16)
      • Spring Docs (6)
      • Spring Data JPA Tutorial (14)
      • Spring Boot Tutorial (17)
      • Jersey (6)
    • Go (17)
    • Dev (10)
      • Clean Architecture (3)
      • System Design (2)
      • Documents (2)
      • Client (2)
    • Infrastructure (5)
      • Docker (1)
      • Kubernetes (4)
    • DB (20)
      • MySQL (9)
      • MariaDB (9)
      • Oracle (1)
    • Java (52)
      • Basic (14)
      • coding test (27)
      • Effective Java (11)
    • Python (7)
      • Flask (1)
      • Basic (3)
      • Effective Python (1)
      • coding test (2)
    • Front-end (3)
      • Vanilla JS (2)
      • Basic (1)
    • Linux (11)
      • Basic (2)
      • Command-line (9)
    • Web Server (6)
      • CentOS 7 (5)
      • Oracle Linux 8 (1)
    • WAS (3)
    • CentOS 7 (17)
      • Basic (9)
      • Jenkins (8)
    • Etc (10)
      • Windows 10 (3)
      • trash bin (3)
09-16 02:44
  • 전체보기
  • 방명록
  • jini's GitHub
  • demo api
  • chaeking api
RSS 피드
로그인
로그아웃 글쓰기 관리

hello jiniworld

컨텐츠 검색

태그

Spring Boot hackerrank spring docs week1 Command-Line effectivejava https JAX-RS centos7 SpringBoot2 Spring Boot Tutorial Java springboot codility jenkins MariaDB go MySQL Spring Jersey

최근글

댓글

공지사항

  • SSL 인증서 설정하기

아카이브

hello jiniworld(220)

  • [Codility - Java] 5. Prefix Sums - 1. PassingCars

    2023.01.04
  • [Codility - Java] 7. Stacks and Queues - 1. Brackets

    2023.01.02
  • [Codility - Java] 7. Stacks and Queues - 3. Nesting

    2023.01.02
  • [Codility - Java] 7. Stacks and Queues - 2. Fish

    2022.12.30
  • [Java] Functional Programming - 1. Java 함수형 프로그래밍의 개요와 Stream

    2022.12.08
  • [OOP] SOLID 원칙

    2022.12.05
[Codility - Java] 5. Prefix Sums - 1. PassingCars

PassingCars A non-empty array A consisting of N integers is given. The consecutive elements of array A represent consecutive cars on a road. Array A contains only 0s and/or 1s: 0 represents a car traveling east, 1 represents a car traveling west. The goal is to count passing cars. We say that a pair of cars (P, Q), where 0 ≤ P < Q < N, is passing when P is traveling to the east and Q is travelin..

2023. 1. 4. 17:44
[Codility - Java] 7. Stacks and Queues - 1. Brackets

1. Brackets Determine whether a given string of parentheses (multiple types) is properly nested. A string S consisting of N characters is considered to be properly nested if any of the following conditions is true: S is empty; S has the form "(U)" or "[U]" or "{U}" where U is a properly nested string; S has the form "VW" where V and W are properly nested strings. For example, the string "{[()()]..

2023. 1. 2. 23:58
[Codility - Java] 7. Stacks and Queues - 3. Nesting

Nesting A string S consisting of N characters is called properly nested if: S is empty; S has the form "(U)" where U is a properly nested string; S has the form "VW" where V and W are properly nested strings. For example, string "(()(())())" is properly nested but string "())" isn&apos;t. Write a function: class Solution { public int solution(String S); } that, given a string S consisting of N c..

2023. 1. 2. 23:24
[Codility - Java] 7. Stacks and Queues - 2. Fish

Fish N voracious fish are moving along a river. Calculate how many fish are alive. You are given two non-empty arrays A and B consisting of N integers. Arrays A and B represent N voracious fish in a river, ordered downstream along the flow of the river. The fish are numbered from 0 to N − 1. If P and Q are two fish and P < Q, then fish P is initially upstream of fish Q. Initially, each fish has ..

2022. 12. 30. 20:35
[Java] Functional Programming - 1. Java 함수형 프로그래밍의 개요와 Stream

함수형 프로그래밍 람다식 함수형 인터페이스 Collection vs Stream 중간 연산, 종료 연산 filter, distinct sorted map flatMap peek 메서드 참조 static method 참조 인스턴스의 인스턴스 메서드 참조 생성자 new 참조 클래스의 인스턴스 메서드 참조 array를 Stream으로 변환하기 1. 함수형 프로그래밍 입력을 넣을 경우 동일한 결과값을 리턴하는 함수와 같은 특징을 갖는 프로그램을 말합니다. 코드의 이해가 쉽고, 유지 보수 및 테스트가 쉽다는 장점이 있습니다. 함수형 프로그래밍의 핵심 개념은 일급 함수, 순수 함수, 고차 함수라는 특징입니다. 1.1. 일급 함수 함수를 값으로 다룰 수 있는 성질로, 변수에 담을 수 있습니다. 함수를 다른 함수의 매..

2022. 12. 8. 02:51
[OOP] SOLID 원칙

S, SRP O, OCP L, LSP I, ISP D, DIP 1. SRP Single Responsibility Principle 단일 책임 원칙 하나의 객체가 하나의 책임만 갖는다 (= 클래스를 단 하나의 목표만 가지고 작성한다.) 높은 유지보수성 모듈 전반의 가시성을 제공한다 1.1. SRP 적용 예 1 특정 자원을 저장하는 기능과 조회하는 기능은 책임이 다릅니다. 저장에 관한 비즈니스 로직과 조회에 관한 비즈니스 로직을 서로 다른 클래스로 분리하여 하나의 클래스가 하나의 목표만을 가지도록 만듭니다. 저장에 관한 기능이 변경되었을 때에, 조회에 관한 서비스는 변경되지 않는다. 1.2. SRP 적용 예 2 계좌에 관한 도메인이 있을 때, 계좌에 관한 비즈니스 로직은 계좌 도메인 안에 작성하고, 계좌 ..

2022. 12. 5. 17:47
1 ··· 9 10 11 12 13 14 15 ··· 37
JINIWORLD
© jiniworld. All rights reserved.

티스토리툴바