Java Java If-Else Hackerrank Solution import java.io.*; import java.math.*; import java.security.*;...
Java Stdin and Stdout I hackerrank solution
Java Java Stdin and Stdout I Hackerrank Solution java 7 import java.util.Scanner; public class Solut...
Welcome to Java! Hackerrank solution
Java Welcome to Java! Hackerrank Solution java 7 public class Solution { public static void main(St...
Messages Order in C++ hackerrank solution
C++ #include <iostream> #include <vector> #include <algorithm> using namespace std; ...
Overloading Ostream Operator In C++ hackerrank solution
C++ #include <iostream> #include <string> using namespace std; class Person { public: ...
Multi Level Inheritance in C++ hackerrank solution
C++ Problem statement: You are given three classes: Triangle, Isosceles, and Equilateral. The Triangle class is th...
Rectangle Area in C++ hackerrank solution
C++ Problem statement: You are given a class Rectangle with the following specifications: Two private integers...
Cpp exception handling In C++ hackerrank solution
C++ Problem statement: You are given two integers, a and b. You need to calculate a/b. If b is zero, you need t...
Hotel Prices In C++ hackerrank solution
C++ Problem statement: You are given the prices of hotel rooms for the upcoming season in a hotel. Each room has a...
Inheritance Introduction Iin C++ hackerrank solution
C++ Problem statement: You are given two classes, Person and Student, where Person is the base class and Student i...
Deque-STL in C++ hackerrank solution
C++ Problem statement: You are given a deque container with a specified number of integers. You need to process Q ...
Print Pretty in C++ hackerrank solution
C++ Problem statement: You need to format a given integer as a monetary value with currency symbol and precision. ...
Maps-STL in C++ hackerrank solution
C++ Problem statement: You have to perform operations on a map where each key is a student's name and the v...
Sets-STL in C++ hackerrank solution
C++ #include <iostream> #include <set> using namespace std; int main() { int q; ...
Lower Bound-STL in C++ hackerrank solution
C++ Problem statement: You are given a sorted list of integers and a number. Your task is to write a functio...
Vector-Erase in C++ hackerrank solution
C Problem statement: You are given a vector of integers and two queries. The first query is to erase a specific...
Vector-Sort in C++ hackerrank solution
C Problem statement: You are given a vector of integers and you need to sort them in non-decreasing order. ...
Abstract Classes - Polymorphism in C++ hackerrank solution
Python Java C++ #include <iostream> #include <unordered_map> using namespace std; ...
Virtual Functions in C++ hackerrank solution
C Problem statement: You are given a partially implemented class Person and two derived classes Professor and S...