i am participating in google codejam 2012. I have red their Quick start guide . But i still unable to understand how to submit the answer. I have following question:
1> It’s said that, we have to download the test cases (.in file) and run our program by using it. I just want to know if i have to make a method to extract input from .in file for that or enter it manually to verify the working?
2> When submit our answer, do we have to submit .txt file or .exe file(Am using c language)?
Thanks in advance
1.Put the .in files in your program folder.When testing, you don’t have to enter it manually (but of course do this). I remember in C there’s a method fscanf that can read from a file which might help you. But when you submit, you should still assume you are reading from the screen (entered manually), that is, change back to scanf.
2.You should submit your .c file.