What is the proper way to write codes in ideone ?

Before compiling our codes in ideone.com what are the things which one should do so that the code is not copied by others…?
and what is difference between secret and private…?

It written on contest page for a while now:

If you use Ideone, make sure to mark your submission “private” (not secret).

From ideone FAQ - Online Compiler and IDE >> C/C++, Java, PHP, Python, Perl and 70+ other compilers and interpreters - Ideone.com

  • public - everyone has access to the code and it is listed at the recent codes page;
  • secret - everyone has access to the code and it is not listed at the recent codes page;
  • private - only author of the code has access to it and it is not listed at the recent codes page. To use this level of visibility you need to be logged in.

link for secret can be guess, but only in theory (or there is another way, which I do not know…)

1 Like