Archive: 2019

0

Configuration of Network for AWS (2/2)

Configuration of AWS Network Flow Enter AWS Website and Joining at there Create VPC Create Subnet Create Internet Gateway and Attach this to VPC Create NAT Gateway Create Route Tab

0

Usage of JUnit Basic

How to Use Junit1. Calculator ExampleWe need two files for testing JUnit. One is Calculator.java and the other is CalculatorTest.java Let’s start to make the package and files for that. 1234> mkdir

0

The basic concept of IoC

IoC (Inversion of Control)Tradionally The java grammer usually use the ‘new’ keyword when you want to make the new object something. but It’s really different in The Spring Framework. If you want to c

0

Building Spring MVC via Intellij IDEA

This article is the Summary of building Spring MVC Project via Intellij IDEA IDE. 1. To make the new projectplease click like below process. 1File > New > Project then You can see the new windo

0

Let's build React with Spring boot Server ver.1

1. Spring Boot를 활용한 Spring Framework 개발환경 구축 Visual Studio Code 플러그인 확장.Ctrl + Shift + x 를 눌러 Marketplace를 열고 아래 두 항목을 찾아 Install한다. 123451. Java Extension Pack2. Spring Boot Extension Pack java.hom

0

Let's build React with Spring boot Server ver.2

1. Spring Boot를 활용한 Spring Framework 개발환경 구축 Visual Studio Code 플러그인 확장.Ctrl + Shift + x 를 눌러 Marketplace를 열고 아래 두 항목을 찾아 Install한다. 123451. Java Extension Pack2. Spring Boot Extension Pack java.hom

0

Farthest Node / Dijkstra

Core123Dijkstra 알고리즘을 활용해 최단경로를 구하자. Questionn개의 노드가 있는 그래프가 있습니다. 각 노드는 1부터 n까지 번호가 적혀있습니다. 1번 노드에서 가장 멀리 떨어진 노드의 갯수를 구하려고 합니다. 가장 멀리 떨어진 노드란 최단경로로 이동했을 때 간선의 개수가 가장 많은 노드들을 의미합니다. 노드의 개수 n, 간선에 대한

0

Rotate Two Dimensional Matrix

Core1234시계방향 : [x][y] -> [n-y][x]반시계방향 : [x][y] -> [y][n-x] Question12input : String s, int noutput : String answer 문제 보기 SolutionData StructureAlgorithm