top of page
Search
The Tech Platform
Nov 2, 2020
Merge Sort Algorithm
Merge sort is one of the most efficient sorting algorithms. It works on the principle of Divide and Conquer. Merge sort repeatedly breaks...
The Tech Platform
Nov 2, 2020
Selection Sort
Selection Sort is a simple comparison-based sorting algorithm that divides the input array into two parts: a sorted part and an unsorted...
The Tech Platform
Nov 2, 2020
Selection Sort Program in Python
def findMinIndex(A, start): min_index = start start += 1 while start < len(A): if A[start] < A[min_index]: min_index = start start += 1...
The Tech Platform
Nov 2, 2020
Insertion Sort Algorithm
Insertion sort is a simple sorting algorithm that builds the final sorted array one element at a time. It is an in-place and stable...
The Tech Platform
Nov 2, 2020
Insertion Sort Implementation in Python
# Function to do insertion sort def insertionSort(arr): # Traverse through 1 to len(arr) for i in range(1, len(arr)): key = arr[i] # Move...
The Tech Platform
Nov 2, 2020
3 Neglected Features in Python 3 That Everyone Should Be Using
Enums, fstrings, and data classes Python 3 has been around for a while now, and most developers — especially those picking up programming...
The Tech Platform
Oct 29, 2020
Python: How to execute shell commands / scripts efficient
Imagine the following scenario: every-night we execute a task, the task is a shell script that copies some files remotely. Depending many...
The Tech Platform
Oct 27, 2020
Plotly In Python
Plotly in Python is a powerful plotting library that supports diverse chart types for creating interactive visualizations. Built on...
The Tech Platform
Oct 27, 2020
ggplot
ggplot is a plotting system for Python, drawing inspiration from R's ggplot2 and adhering to the Grammar of Graphics principles. Designed...
The Tech Platform
Oct 27, 2020
Introduction to Data Visualization in Python
Data visualization serves as a powerful tool in data analysis, providing a visual context that enhances our understanding of complex...
bottom of page