Raju Kumar has Published 3 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

332 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

Data Types in C

Raju Kumar

Raju Kumar

Updated on 24-Jun-2020 10:58:38

13K+ Views

Variables in C are associated with data type. Each data type requires an amount of memory and performs specific operations.There are some common data types in C −int − Used to store an integer value.char − Used to store a single character.float − Used to store decimal numbers with single ... Read More

Shortest path algorithms in Javascript

Raju Kumar

Raju Kumar

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

804 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