Skip to content

Commit

Permalink
Merge pull request #36 from imjching/UVa11065-fix-include-header
Browse files Browse the repository at this point in the history
Fix include bits/stdc++.h header for UVa11065
  • Loading branch information
stevenhalim committed Feb 27, 2019
2 parents 3a4cb01 + 0555c67 commit 045c734
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ch8/UVa11065.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Gentlemen Agreement

#include <bits/stdc++.>
#include <bits/stdc++.h>
using namespace std;

#define FOR(i,a,b) for (int i=(a),_b=(b); i<=_b; i++)
Expand Down

0 comments on commit 045c734

Please sign in to comment.