Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 375 Bytes

File metadata and controls

22 lines (17 loc) · 375 Bytes

AlgorithmStudy

Baekjoon, Programmers, SWEA

For much prettier algorithm. 2021.05-

C++

ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);

Java

BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));

br.close();
bw.flush();
bw.close();