Skip to content

Instantly share code, notes, and snippets.

View ningenMe's full-sized avatar

Furuta Taishi ningenMe

View GitHub Profile
@ningenMe
ningenMe / assignees-sample.yml
Last active September 13, 2021 17:03
actions yaml for auto assingee
name: assignees-sample
on:
pull_request:
branches: [ main ]
jobs:
assignees:
runs-on: ubuntu-latest
steps:
@ningenMe
ningenMe / print.cpp
Created June 14, 2021 17:24
print function implemented by cpp for competitive programing
#include <iostream>
#include <vector>
#include <string>
#include <map>
#include <set>
using namespace std;
template <class T>ostream &operator<<(ostream &o, const vector<T>&obj) {
#include <iostream>
#include <fstream>
#include <string>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <vector>
#include <algorithm>
#include <numeric>
#include <map>