Skip to content

A test-case generator for all competitive programmers out there

Notifications You must be signed in to change notification settings

ojasiiitd/TestCaseBuddy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TestCaseBuddy

your very own testcase helper! :)

Instructions for Use

Testcases & Number of elements :

  • Input the number of testcases required.
  • Also, input the number of lines/elements per testcase.
  • Click on submit.

Testcase input format :

  • You will notice the required number of input boxes available.
  • Input format :

    • firstly choose int (for integer), sp-int (for space separated integer values), char (for a character), or string (a string).
    • Your 2nd and 3rd elements are the lower bound and upper bound of the value required, whenever applicable. In case of string, they signify the length of the string.
    • Your 4th element denotes the number of space-separated integers. For Example :-
    int 1 1000
    char
    sp-int 1 100 5
    string 4 40
    
    will give testcases in the following form :
    823
    f
    34 13 83 92 8
    kjsdnldide
    
    which is repeated the specified number of times.

Happy Coding!


PS : I'm working on new updates as well!