Skip to content

PS 제출 코드를 기록합니다. (BOJ, ALGOSPOT 등)

Notifications You must be signed in to change notification settings

ohdoyoel/problem-solving

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

problem_solving

1. Introduction

풀어본 문제의 제출 코드를 기록하는 레포지토리입니다.

2. Skeleton Code

#include <bits/stdc++.h>
#define endl "\n"
#define all(x) (x).begin(), (x).end()
#define sz(x) (int)(x).size()
using namespace std;
using lld = long long;
using pii = pair<int, int>;
using pll = pair<lld, lld>;

// variable

int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0); cout.tie(0);

    // algorithm

    return 0;
}

PS 장인 한동규 씨로부터 영감을 받아 작성되었습니다.

3. Index

https://velog.io/@ohdoyoel/posts?tag=ps

https://onecompiler.com/cpp/

About

PS 제출 코드를 기록합니다. (BOJ, ALGOSPOT 등)

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages