일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- yum설치목록
- intelij sqlmap
- Java
- .env
- 배열컬럼
- CentOS
- node.js postgresql
- nodejs 환경변수처리
- multi instance
- sqlmap warring
- Node
- pg환경변수
- yum목록
- 레드마인
- 레드마인테마
- redmine
- intelij mybatis
- rpm목록
- 리액트네이티브
- 레드마인 테마
- sqlmap 경고
- 배열크기
- 멀티 인스턴스
- Redmine theme
- tomcat install
- node postgresql
- 메소드한줄
- dotenv
- 패키지
- rpm설치목록
- Today
- Total
ZeroRadish
https://www.acmicpc.net/problem/1912 import java.util.Scanner;public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int N = scanner.nextInt(); int max = Integer.MIN_VALUE, currentSum = 0; for (int i = 0; i
https://www.acmicpc.net/problem/1254 import java.io.BufferedReader;import java.io.InputStreamReader;import java.io.IOException;public class Main { public static void main(String[] args) throws IOException { String s = new BufferedReader(new InputStreamReader(System.in)).readLine(); int n = s.length(); int minLen = 2 * n - 1; for (int i = 0; i
https://www.acmicpc.net/problem/3019import java.io.*;import java.util.ArrayList;import java.util.List;import java.util.StringTokenizer;public class Main { public static void main(String[] args) throws IOException { BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(System.out)); S..
https://www.acmicpc.net/problem/2659문제 해결 방법1. 입력 받기네 자리 숫자 4개를 입력 받습니다.2. 가능한 최소의 수 찾기네 자리 숫자 4개의 순열을 회전시켜 가장 작은 수를 찾습니다. 예를 들어, 입력이 1 2 3 4 라면, 1234, 2341, 3412, 4123 중에서 가장 작은 수는 1234입니다.3. 1111부터 9999까지의 모든 네 자리 숫자에 대해 가능한 최소의 수를 계산각 숫자에 대해 최소의 수를 계산하고, 해당 최소 수를 true로 표시하는 boolean 배열을 사용합니다.4. 주어진 수까지의 가능한 최소 수의 순서 계산주어진 수보다 작은 모든 가능한 최소 수를 카운트하여 순서를 출력합니다.import java.io.BufferedReader;impor..
아래는 server.js에서 pg패키지를 이용하여 Postgresql 접속테스트를 하기 위해 작성한 코드 일부에요new Clienct를 생성할때 하드코딩 되어 있는 접속 정보 객체의 값을 환경변수로 처리해보려고요const express = require('express');const path = require('path');const { Client } = require('pg');const app = express();const port = 3000;const client = new Client({ user: 'fubarvis', host: 'localhost', database: 'fubarvis', password: 'fubarvis', port: 5432,});client.connect(..