BOJ9663 N-Queen
#include <iostream> #include <bits/stdc++.h> using namespace std; vector<bool> diag1,diag2,col; int c = 0; void search(int N,int y){ if (y==N){ c++; return;...
#include <iostream> #include <bits/stdc++.h> using namespace std; vector<bool> diag1,diag2,col; int c = 0; void search(int N,int y){ if (y==N){ c++; return;...
#include <iostream> #include <bits/stdc++.h> using namespace std; int is_pair(char t, char inp){ if (t=='[' && inp==']'){ return 3; } if (t=='(' &&...
AWS workshop 2, WAF구성 테스트 2주차 워크샵으로 AWS WAF 구성 테스트를 진행했다. 이번주는 내용을 정리하면서 진행했고, 실습환경을 구성하고 직접 공격해보고, 규칙 설정으로 방어하는 과정까지 금방 끝났다. 쉽게 쓸수 있도록 만들어져 있어서 어렵지는 않았고 수업때 이야기하셨던게 이거였구나.. 하면서 과정을 마쳤다. 재미있게 했다...
AWS General Immersion Day workshop BOB에서 수업을 듣고 aws workshop을 무료로 진행할수 있도록 어카운트를 받아서 Basic Modules 까지 진행했다. 끝까지 하다보면 Advanced로 넘어갈 수 있는 링크도 나오는데, 마지막 CloudFormation 부분부터는 거의 머리를 비운상태로 진행해서 이 뒤...
https://www.acmicpc.net/problem/1924 #include <iostream> #include <bits/stdc++.h> using namespace std; char *days[] = {"SUN","MON","TUE","WED","THU","FRI","SAT"}; int dfin[] = {0,31,...
set #include<unordered_set> std::unordered_set<std::string> s; s.insert(”apple”); s.insert(”ba”); s.size(); if(s.count(”apple”)==1) cout<< “존재함”<<”\n”; for(const auto& ...
Map #include <iostream> #include<map> #include<cstring> #include<iterator> using namespace std; int main() { cin.tie(0); cout.tie(0); ios::sync_with_stdio(0); map<s...
#include <iostream> #include <bits/stdc++.h> using namespace std; bool compare(int i, int j){ return i > j; } class Student { public: string name; int scor...
#include<iostream> #include<bits/stdc++.h> using namespace std; int main(){ cin.tie(0); cout.tie(0); ios::sync_with_stdio(0); string s1,s2; cin >> s1 >> s2;...
tr_eikon_eod_data 검색하여 데이터 사용 pyplot 2 예제 8_1 test1 import numpy as np import pandas as pd import matplotlib.pylab as plt import matplotlib.colors as mcolors import matplotlib.dates as dates d...