Блог пользователя coderick14

Автор coderick14, история, 7 лет назад, По-английски

Hello everyone. I've been attending contests for a while now. In order to test my code against sample cases, I came up with a command line tool. It runs your code against the sample cases and shows the result (expected output versus user output) and verdict(AC, WA, TLE, RTE). All this without leaving the terminal. I would really appreciate if you try it out and give some feedback so that I can make it better.

You can prefetch your cases so that you can test them later offline. Or just test your code on the fly.

Install with pip install --user ACedIt

Examples
  • acedit -s codeforces -c 86 -p D -f (prefetch cases from problem 86-D)
  • acedit --set-default-site codeforces (so that you dont need to mention the site everytime)
  • acedit --run solve.cpp -c 835 -p D (run your code against the cases of 835-D)
  • acedit --run test.py -s codechef -c AUG17 -p CHEFFA (similar as above, but with Codechef)

For complete usage instructions, click here

Thanks a lot for your time!!

  • Проголосовать: нравится
  • +78
  • Проголосовать: не нравится

»
7 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Auto comment: topic has been updated by coderick14 (previous revision, new revision, compare).

»
7 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Just downloaded it looks great! Thanks!

Can you post some instructions on how to check the test cases for the practice questions on codechef or hackerrank?

»
7 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I use cygwin with Windows and I get this error:
File "c:\cygwin64\tmp\pip-build-b7cb_s7g\acedit\acedit\install_entry.py", line 13, in run
from main import supported_sites
ImportError: No module named 'main'

Any idea how to fix it? :/

  • »
    »
    6 лет назад, # ^ |
      Проголосовать: нравится +16 Проголосовать: не нравится

    You get that error when using Python 3.x, I fixed it using Python 2.7 instead. It's very likely you'll encounter more errors on Windows because the tool was written for Linux. The file "util.py" makes some calls to the OS with Linux syntax, just change them to Windows syntax, lines 314,315,316,330 to be precise. Also modify the g++ flags (same file) if necessary. Cheers!

  • »
    »
    5 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    I've just added support for python3. If you pip install now, it should work. Added support for atcoder as well, but it's experimental.

»
5 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

How this will work with problem have multiple solutions ?!

  • »
    »
    5 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Sorry that it won't work for such problems. It becomes considerably harder to implement this.

»
5 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

cf tools does the same thing. It's easy to use. Just copy the code to the test case dir and run cf test.

»
5 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Really great but Hightail works for me.

»
16 месяцев назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

How can I run it for educational rounds in codeforces