Notice
Recent Posts
Recent Comments
Link
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- WAS WebServer 차이
- 와스 웹서버의 차이
- 파이썬 가상환경
- Web Service Architecture
- 즐겨찾기가 가장 많은 식당 정보 출력하기
- java
- 프로그래머스
- JavaScript Obejct Notation
- 트레이딩 봇 만들기
- spring
- JSON 형식
- BigDecimal
- 프로그래머스 소수
- 리눅스 777
- 오라클
- 파이썬 주식
- 파이썬
- Python
- WAS란
- Web Server란
- 단순 반복 자동화
- 리눅스 rwx
- beautifulsoup
- JSON특징
- 리눅스
- 변동성 돌파전략
- 빗썸 API 사용
- 프로그래머스 SQL
- string format
- pybithumb
Archives
- Today
- Total
목록[코딜리티] TapeEquilibrium (1)
IT 개발자_S
[코딜리티] TapeEquilibrium
1. 배열 값이 주어지고 2. p 값에 따라 0~ p 까지 p +1 ~n 까지의 합을 구한후 서로 빼줌 3. 이중 for문을 걸지 않게 유의 // you can also use imports, for example: import java.util.*; // you can write to stdout for debugging purposes, e.g. // System.out.println("this is a debug message"); class Solution { public int solution(int[] A) { // write your code in Java SE 8 int [] prefix_sum = new int[A.length]; int sum = 0; int min = Integer.M..
IT/알고리즘_JAVA
2020. 5. 10. 21:45