GeekTrust is an AI-powered code-evaluation platform for job-seekers. After 5 failed challenges, this was my first deliverable that earned 6/6 badges and put me in the GOLD tier (scores over 80/100).
For details on the challenge's instructions, input/output requirements - see this link: https://www.geektrust.com/challenge/my-money
- Python 3.8/3.9
- Pip
- Python 3.8/3.9
- Pip
We have provided scripts to execute the code.
Use run.sh
if you are Linux/Unix/macOS Operating systems and run.bat
if you are on Windows. Both the files run the commands silently and prints only output from the input file sample_input/input1.txt
. You are supposed to add the input commands in the file from the appropriate problem statement.
Internally both the scripts run the following commands
pip install -r requirements.txt
- This will install the dependencies mentioned in the requirement.filepython -m geektrust sample_input/input1.txt
- This will run the solution passing in the sample input file as the command line argument
If you are providing a solution without using the build file, we want you to name your Main file as geektrust.py. This is the file that will contain your main method.
We expect your program to take the location to the text file as parameter. Input needs to be read from a text file, and output should be printed to the console. The text file will contain only commands in the format prescribed by the respective problem.
Please fill input1.txt
and input2.txt
with the input commands and use those files in run.bat
or run.sh
. Replace python -m geektrust sample_input/input1.txt
with python -m geektrust sample_input/input2.txt
to run the test case from the second file.
python -m unittest discover
will execute the unit test cases.
The unit test coverage is found by the command :
coverage run -m unittest discover
You can refer our help documents here You can read build instructions here