Raju Kumar has Published 2 Articles

How to run a selected test from a set of tests in pytest?

Raju Kumar

Raju Kumar

Updated on 29-Jul-2020 11:46:46

409 Views

We can run a selected test from a set of tests in pytest. Pytest is a test framework in python. To install pytest, we need to use the command pip install pytest. After installation, we can verify if python has been installed by the command pytest –version. The version of ... Read More

Shortest path algorithms in Javascript

Raju Kumar

Raju Kumar

Updated on 15-Jun-2020 12:16:12

1K+ Views

In graph theory, the shortest path problem is the problem of finding a path between two vertices (or nodes) in a graph such that the sum of the weights of its constituent edges is minimized. Here we need to modify our add edge and add directed methods to allow adding ... Read More

1
Advertisements