Permutation algorithm
Returns an array that actually represents the permutation algorithm. It receives an array, and has to return an array of…
python plot – using numpy and matplotlib
Using numpy and matplotlib, a sequence of sinusoids can be created, like a piece of art. In this case, a…
How to install cygwin in windows
Download from here https://www.cygwin.com/ The setup file Install in c:/ Done! Questions: What is Cygwin? Cygwin is “a large collection…
2 Dimensional Matrix in CPP
The logic is: Declare, and print. That is all. The code as follows: Declaration: int matrix1[2][2] = {{1,2},{3,4}};Printing in 2…
Key differences between developer and Programmer
The terms “developer” and “programmer” are sometimes used interchangeably, but they can have distinct meanings and implications in the context…