일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Auto Login
- automated system
- The Internet
- AWS
- URI
- Slack
- handleMethodsArgumentNotValid
- Web Crawler
- creon login
- Creon
- python
- AESCipher
- API
- spec
- ExceptionHandler
- mongodb
- RecursionError: maximum recursion depth exceeded while calling a Python object
- KOSDAQ
- EC2
- pyinstaller
- Rest
- stock trading
- request param
- WebServer
- Instance
- Stock
- Daishin Securities
- Version Control
- mime type
- header
- Today
- Total
목록전체 글 (31)
Change the Better World
Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use the same element twice. You can return the answer in any order. class Solution(object): def twoSum(self, nums, target): """ :type nums: List[int] :type target: int :rtype: List[int] """ t = ta..
Factor String StringBuilder StringBuffer Storage Area String Pool Heap Area Heap Area Mutability Immutable Mutable Mutable Performance slow Fast middle Java Version 1.0 1.5 1.2
Java Development Kit(JDK) Java Runtime Environment(JRE) Java Virtual Machine(JVM) JRE + Development tools JVM + Libraries to execute the application Runtime environment to execute Java byte code JRE, JavaDoc, compiler, debuggers, and so on. software package(Java class libraries, JVM, and so on.) Specification, Implement, and Runtime Instance.
Up Down Left Right n = int(input()) x, y = 1, 1 plans = input().split() dx = [0, 0, -1, 1] dy = [-1, 1, 0, 0] move_types = ['L', 'R', 'U', 'D'] for plan in plans: for i in range(len(move_types)): if plan == move_types[i]: nx = x + dx[i] ny = y + dy[i] break if nx n or ny > n: continue x, y = nx, ny print(x, y) Time N = int(input()) cnt = 0 for i in range(N + 1): for j in ra..
Condition First line, natural number ( N(2 ≤ N ≤ 1,000), M(1 ≤ M ≤ 10,000), K(1 ≤ N ≤ 10,000) ) is divided by a white space Second line, natural number give N-number which is divided by a white space (1 ≤ N_number ≤ 10,000). Always K ≤ M n, m, k = map(int, input().split()) data = list(map(int, input().split())) data.sort() first = data[n - 1] second = data[n - 2] count = int(m / (k + 1)) * k cou..
- what is the GREEDY ALGORITHM? https://en.wikipedia.org/wiki/Greedy_algorithm Greedy algorithm - Wikipedia From Wikipedia, the free encyclopedia Jump to navigation Jump to search computer science heuristics that makes the locally optimal choice at each stage Greedy algorithms determine the minimum number of coins to give while making change. These are the steps en.wikipedia.org Question1. give ..

first of all, create your account. reference, https://aws.amazon.com/premiumsupport/knowledge-center/create-and-activate-aws-account/?nc1=h_ls AWS 계정 생성 및 활성화 Support 플랜을 선택한 후에는 확인 페이지에 계정이 활성화 중이라고 표시됩니다. 계정은 대부분 대개 몇 분 내에 활성화되지만 프로세스에는 최대 24시간이 걸릴 수 있습니다. 이 시간 동안 AWS aws.amazon.com Step 2, after the first step, can see AWS Management Console. Step 3, select 'Service' and then click 'EC2' Step..

First, need a 32bit python program to connect Plus API for gathering information and build a 64bit python program for web crawling. Second, these data should be saved in MongoDB Third, a 32bit python program must analyze them to build documents the program can analyze KOSPI and KOSDAQ throw a variety of algorithms in 40 mins. If people do it, they should need an amount of time as the number of s..

First, develop a program by using API for connecting a strategy at HTS reference https://money2.creontrade.com/e5/mboard/ptype_basic/plusPDS/DW_Basic_Read.aspx?boardseq=299&seq=87&page=1&searchString=%ea%b0%90%ec%8b%9c&prd=&lang=&p=8833&v=8639&m=9505 크레온플러스자료실 - 크레온 첨부파일을 PDF뷰어로 확인 하실수 있으며, PDF뷰어 미설치 고객께서는 우측 다운로드를 통해 설치 후 이용 가능 합니다. PDF뷰어 다운로드 money2.creontrade.com second, add buying function t..

First, users have their account of CREON Plus(api) by Daishin Securities can download it here(https://www.creontrade.com/g.ds?m=2194&p=12294&v=11951) Below the image, the first square dotted line is for HTS(Home Trading System), the second square dotted line is to build your own trading program Second, need to DB(in this case, MongoDB) need AESCipher for your personal information like pw helped ..