Insertion Sort Part 2 Hackerrank Solution in C

In Insertion Sort Part 2 Hackerrank Solution in C, we are given an array, we need to sort it using insertion sort and print all…

Continue Reading

Extra Long Factorials Hackerrank Solution

The factorial of a number is defined as the product of all natural numbers up to that number. For example, factorial of 5 or 5!…

Continue Reading

Java Datatypes Hackerrank Solution

Introduction In Java Datatypes Hackerrank Solution, we are given an integer input, we have to determine the primitive datatypes of java that can store this…

Continue Reading

Smart Number Hackerrank Solution

Given some numbers, we need to find whether they are smart numbers or not. If they are smart we should print “YES” otherwise print “NO”….

Continue Reading

Python Average Function Hackerrank Solution

We have a function called avg that takes in a variable number of integer inputs. We have to complete it such that it returns the…

Continue Reading

Company Logo Hackerrank Solution

Let’s see Company Logo Hackerrank Solution. A company wants a new logo. They want to set the letters of the logo based on the letters…

Continue Reading
How to extract YouTube comments using Python?

How to extract YouTube comments using Python?

Today, we will learn how to extract YouTube comments using Python with the help of google APIs. Extracting comments from youtube can be a daunting…

Continue Reading

Matrix Summation Hackerrank Solution

The below algorithm is used to transform the matrix and we will use it for Matrix Summation. We need to find the original matrix, given…

Continue Reading
Employee Management System Project in Java

Employee Management System Project in Java

Introduction We are going to develop an Employee Management System Project in Java. This project is great for those who are at an intermediate level…

Continue Reading

A company is repainting its office – HackerRank Solution

Problem You can find the problem statement here. Explanation Subarrays with a sum less than or equal to 7 are Length 1 – [2], [3],…

Continue Reading
NxNxN Matrix in Python 3

NxNxN Matrix in Python 3

A 3d matrix(NxNxN) can be created in Python using lists or NumPy. Numpy provides us with an easier and more efficient way of creating and…

Continue Reading
Python OOP Projects

Python OOP Projects | Source code and example

Introduction We all know that Python is a vast language that supports many libraries for almost every work we need to do. But, we should…

Continue Reading
AES in Python | Encrypt & Decrypt | PyCryptodome

AES in Python | Encrypt & Decrypt | PyCryptodome

Introduction Today, we will implement AES in Python for encryption and decryption in Python. Python has a Crypto Cipher package for securing the data i.e….

Continue Reading
MD5 Hash in Python

MD5 Hash in Python

What are hash functions? These are functions that can take data of any size as input but give a fixed size ciphered output called message…

Continue Reading