blue_green_deployments

What is blue green deployment.


If you are around devops people or people who are working with deployments in your industry. You must have heard of the name blue green deployment. Most of the companies in the world use this technique to get the least down time for their respective products. This deployment is old but still one of the

Pure and impure functions

Difference between pure and impure functions.


What are pure and impure functions? Pure functions: These are functions which are sure to provide exact result when the same arguments are passed. For having a function as pure function if must not have any external variable, data store call, ajax request or any other global variables. This means that you can be completely

Algorithms: Mirror a Binary tree using python

Algorithms: Mirror a Binary tree using python


In this article we are going to see how we can mirror a binary tree using python. Lets see what are binary tree Algorithms: Mirror a Binary tree using python  Binary tree are the tree where one node can have only two child and cannot have more than two. Traversal means visiting all the nodes

Algorithms: Coding a linked list in python

Algorithms: Coding a linked list in python


So next in the algorithm section we are going to write a linked list using python. If you don’t know what is linked list you can read it here. Algorithms: Coding a linked list in python A linked list is a linear collection of data elements, called nodes, each pointing to the next node by