목록전체 글 (404)
Creative Code
import requestsimport pandas as pdimport numpy as npimport timefrom datetime import datetime, timedeltafrom sklearn.preprocessing import MinMaxScalerfrom tensorflow.keras.models import Sequentialfrom tensorflow.keras.layers import LSTM, Densefrom pytz import timezonedef fetch_bithumb_data(coin_symbol, save_path): """ 특정 코인의 1분 간격 데이터를 최근 3일 간 수집하여 CSV로 저장 """ base_url = "https://api...
import requestsimport pandas as pdimport numpy as npimport timefrom datetime import datetime, timedeltafrom sklearn.preprocessing import MinMaxScalerfrom tensorflow.keras.models import Sequentialfrom tensorflow.keras.layers import LSTM, Densefrom pytz import timezonedef fetch_bithumb_data(coin_symbol, save_path): """ 특정 코인의 1분 간격 데이터를 최근 3일 간 수집하여 CSV로 저장 """ base_url = "https://api...
#include #include #include #include using namespace std;int dp[301][3] = { 0 }; // n번째 계단에 m번연속 발판을 밟아 도착했을 때 얻을 수 있는 점수int stair[301]; // 계단의 점수를 저장하는 배열int solution(int N) { int answer = 0; dp[0][1] = 0; dp[0][2] = 0; dp[1][1] = stair[1]; dp[1][2] = stair[1]; for (int i = 2; i > N; int numStair = N; int index = 1; while (N > 0) { int k; cin >> k; stair[index] = k; index++; N--; } cout h..
https://school.programmers.co.kr/learn/courses/30/lessons/258712 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr #include #include #include #include #include #include #include using namespace std; int solution(vector friends, vector gifts) { int answer = 0; mapgift; //선물내역 저장 mapgiftrate;//선물지수 저장 for (int i = 0; i < gifts.size(); i+..
https://school.programmers.co.kr/learn/courses/30/lessons/250121 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr #include #include #include #include using namespace std; bool compare1(vectora, vectorb) { // 정렬기준이 "code" return a[0] < b[0]; } bool compare2(vectora, vectorb) { // 정렬기준이 "date" return a[1] < b[1]; } bool compare3(vectora..
#include #include #include #include using namespace std; int dh[4] = {0,1,-1,0}; // 세로로 이동할 방향 int dw[4] = {1,0,0,-1}; // 가로로 이동할 방향 int solution(vector board, int h, int w) { int answer = 0; // 이웃한 칸이 같은색깔인경우의 수 int n = board.size(); for (int i = 0; i = n || w_check = n) continue; ..