Tag: c
-
Rotate array [LC150]
Hello friends, Today we’re going to discuss and solve another Leetcode DSA problem about rotating array. link- https://leetcode.com/problems/rotate-array/description/ Given an integer array nums, rotate the array to the right by k steps, where k is non-negative. Example 1: Input: nums = [1,2,3,4,5,6,7], k = 3, Output: [5,6,7,1,2,3,4]Explanation:rotate 1 steps to the right: [7,1,2,3,4,5,6]rotate 2 steps…
-
Dutch National Flag algorithm
Hello folks, Hope you’re doing well. Today we shall discuss one of the important computer since algo called Dutch national flag. This is invented by a famous computer scientist Edsger Dijkstra. The Dutch/Netherlands flag consists of three colors: Red, Blue, and White. The objective of this algo to arrange these colors in order (in fastest…
-
Moore Majority Vote Algorithm [LC150]
Hello friends, Hope you’re doing well. Today we are going to discuss an important algo in software engineering called “Moore Majority vote”. We shall also try to implement it in C#. Let’s first talk about background work that is done prior to this algo and then we shall understand how it’s useful. Let’s take an…
