Skip to content

Latest commit

 

History

History
44 lines (36 loc) · 1.58 KB

README.md

File metadata and controls

44 lines (36 loc) · 1.58 KB

program-evaluator

A simple program evaluator. Useful for practicing for Competitive Programming Competitions

Introduction

While practicing for Programming Competitions, Have you ever been in a situation where you had to enter inputs again and again for every change you made in your code? It really gets tiring, doesn't it? This is where pe helps you! It automates the testing of program by saving you from the trouble of manually inputing data.

Syntax

pe PROGRAM_FILE INPUT_FILE OUTPUT_FILE

For help, use: pe -h

Example

pe main.exe input.txt output.txt

example-image-01.png

pe myprogram mycode/input mycode/output

example-image-02.png

Installation

For Linux

  1. Download pe script.
  2. Copy the file to \bin or \usr\bin.
  3. Change the Permission to make it executable.
    1. cd to the directory where pe is located.
    2. Use chmod u+x pe to make it executable.

For Windows

  1. For Windows 10, install Linux Bash Shell. For earlier versions of Windows, install Cygwin.
  2. Download pe script.
  3. Change the Permission to make it executable.
    1. cd to the directory where pe is located.
    2. Use chmod u+x pe to make it executable.

Features

  • Highlights Correct and Incorrect output with Green and Red colors respectively.
  • Show incorrect output only.
  • Randomly generate input using user-defined templates.
  • Group Input and Output.