Fix grader

This commit is contained in:
Chunmyong Park
2020-07-02 10:50:47 +00:00
parent d64e9f622e
commit 5395c1e9ba
31 changed files with 34 additions and 36 deletions

View File

@@ -1,4 +1,4 @@
int nonce; // For random input
int nonce = 0; // For random input
int main() {
int i;

View File

@@ -1,4 +1,4 @@
int nonce; // For random input
int nonce = 0; // For random input
int fibonacci(int n) {
if (n < 2) {

View File

@@ -1,4 +1,4 @@
int nonce; // For random input
int nonce = 0; // For random input
int g = 10;
int foo(int, int k);

View File

@@ -1,4 +1,4 @@
int nonce; // For random input
int nonce = 0; // For random input
int main()
{

View File

@@ -1,4 +1,4 @@
int nonce; // For random input
int nonce = 0; // For random input
int foo() {
int sum = 0;