0.프로그래밍 기법
알고리즘 트레이닝 - 안티 라크소넨 책에서… long long #include<iostream> #include<bits/stdc++.h> using namespace std; int main(){ long long x = 123456789123456789LL; // 아래 코드는 버그가 있다 int a...
알고리즘 트레이닝 - 안티 라크소넨 책에서… long long #include<iostream> #include<bits/stdc++.h> using namespace std; int main(){ long long x = 123456789123456789LL; // 아래 코드는 버그가 있다 int a...
AWS workshop 3..? 대신 지난주를 보내며… 여러가지 문제가 있어서 이번주 워크샵은 끝까지 완료하지 못했다. 사실 거의 못했다. 첫번째 부분을 수행하다가 처음 워크샵때 생성했던 ec2가 남아있는걸 알게되었고, 계속 돈이 나가는걸 늦게 알아서 aws nuke 라는것으로 정리하고 그랬었다… 이번달에 돈이 얼마나 더 나가게 될지는 잘 모르겠다. ...
##
목차 classical encryption algorithms symmetric encryption - DES AES Stream cipher & modes of operations public-key encryption - RSA Diffie-Hellman & EIGamal Digital signature &...
BFS 재귀 #include <iostream> #include <bits/stdc++.h> using namespace std; int dy[4] = {1,0,-1,0}; int dx[4] = {0,1,0,-1}; int dfs(int a, int b,int c, vector<vector<pair<int,...
#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,...