Posts by Raj Anand

Author Biographical Info: Hello, Myself Raj Anand, a 3Y undergraduate student at IIT Roorkee and Candidate Master on CodeForces currently. I have deep interest in Competitive Programming and Algorithmic Mathematics. I hope you all love reading my blogs on various Programming concepts <3

Euclidean Distance Between Two Points In C++

By Raj Anand

In this tutorial, we will consider two points P and Q on a 2D plane and compute and print the Euclidean Distance between them. We will also make sure that our absolute or relative .... Read More

Initialization of a Private Static Const Map in C ++

By Raj Anand

In this tutorial, we will be implementing a private static const map in C++. We will consider the example of car brands and their manufacturing country to show the implementation o.... Read More

All Factors of a Natural Number in C++

By Raj Anand

In this tutorial, we will be looking at all the methods to find all factors of a natural number n. Query Given a natural number n, print all distinct factors of n. C++ Implementa.... Read More

Implementation of Affine Cipher in C++

By Raj Anand

Affine ciphers are monoalphabetic substitution ciphers in which every letter in the alphabet is mapped to its corresponding numeric value, encrypted using a basic mathematical func.... Read More

Methods to resize a 2D vector in C++

By Raj Anand

In this tutorial, I’ll explain how to resize a 2D vector in C++ with some easy examples and code snippets. Before starting this let’s understand how to initialize a 2D .... Read More

Related Posts