top of page
Search
The Tech Platform
Dec 11, 2020
Install Ruby on Rails on Linux
We are installing Ruby On Rails on Linux using rbenv. It is a lightweight Ruby Version Management Tool. The rbenv provides an easy...
The Tech Platform
Dec 11, 2020
Install Ruby on Rails on Windows
Follow the steps given below for installing Ruby on Rails. Step 1: Check Ruby Version First, check if you already have Ruby installed....
The Tech Platform
Dec 6, 2020
County Money in Greedy Algorithm
Given a value V, if we want to make a change for V Rs, and we have an infinite supply of each of the denominations in Indian currency,...
The Tech Platform
Dec 6, 2020
Huffman Algorithm/Coding
Huffman Coding is a technique of compressing data to reduce its size without losing any of the details. It was first developed by David...
The Tech Platform
Dec 5, 2020
Learning C# – Anonymous methods and Lambda Expressions
Anonymous functions and Lambda Expressions As we know from my previous post of the delegates in C#, that delegates are reference type...
The Tech Platform
Nov 27, 2020
5 Ways To Loop Through An Array In PHP
Looping through arrays is a fundamental aspect of programming, allowing you to iterate over the elements and perform various operations....
The Tech Platform
Nov 24, 2020
10 Examples of Array Data Structure in Java
Here are some of the important properties of the array in Java: Unlike C and C++ array is an object in Java. The length attribute of the...
The Tech Platform
Nov 7, 2020
How to Find Missing Number on Integer Array of 1 to 100
Let's understand the problem statement, we have numbers from 1 to 100 that are put into an integer array, what's the best way to find out...
The Tech Platform
Nov 2, 2020
Sorting Algorithm
Sorting algorithm is an algorithm that puts elements of a list in a certain order. The most frequently used orders are numerical order...
The Tech Platform
Nov 2, 2020
Heap Sort Algorithm
In this tutorial, you will learn how heap sort algorithm works. Also, you will find working examples of heap sort in C, C++, Java and...
bottom of page