Best code editors for different programming languages

Best code editors for different programming languages


Code editors are required to make you work fast. With better code editor and its integration for particular language you can get the most out of you time. Lets see best code editors for different programming languages Best code editors for different programming languages C# – Visual Studio, SharpDevelop Java – Eclipse, NetBeans, IDEA, Atom, Sublime

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

Major algorithms asked during Interviews.

Major algorithms asked during Interviews.


Here I am going to mention the list of major algorithms asked during Interviews. You can find the list as below. Major algorithms asked during Interviews. Below are the books I highly recommend for algorithms Graph 1. Breadth First Search (BFS) 2. Depth First Search (DFS) 3. Shortest Path from source to all vertices **Dijkstra**

Binary Tree and its traversal using python.

Binary Tree and its traversal using python.


After a long time I took a look in algorithms and data structure and what I wrote first in Binary Tree and its different traversal in C++. I have never written them in python so I tried to write one. And yes writing them down in python is lot more easier. So lets me first introduce

Naive bayesian text classifier using textblob and python

Naive bayesian text classifier using textblob and python


Text classifier are systems that classify your texts and divide them in different classes. In this article we are going to made one such text classifier using textblob and python. You want to read more about naive bayesian theorem, read it here. Naive bayesian text classifier using textblob and python For this we will be