Dynamic Array – HackerRank Solution
Query in format 1 x y and 2 x y is given, find the output as given in description using dynamic array concept.
Query in format 1 x y and 2 x y is given, find the output as given in description using dynamic array concept.
Solve Anagram Problem without using Inbuilt method in java. Anagram is a strings that contains same character frequency.
Anagram is a set of two strings having same frequency of same character. This will solve using HashMap in java.
Objective In this challenge, we’re getting started with conditional statements. Check out the Tutorial tab for learning materials and an instructional video! Task Given an integer, n, perform the following conditional actions: If n is odd, print Weird If n is even and in the inclusive range of 2 to 5,… Read More »HackerRank Solution :: 30 Days Of Code – 3.Intro to Conditional Statements
ObjectiveIn this challenge, you’ll work with arithmetic operators. Check out the Tutorial tab for learning materials and an instructional video! TaskGiven the meal price (base cost of a meal), tip percent (the percentage of the meal price being added as tip), and tax percent (the percentage of the meal price being added as tax) for a meal,… Read More »HackerRank Solution :: 30 Days Of Code – 2.Operators
Objective Today, we’re discussing data types. Check out the Tutorial tab for learning materials and an instructional video! Task Complete the code in the editor below. The variables i ,d , and s are already declared and initialized for you. You must: Declare 3 variables: one of type int, one of type double,… Read More »HackerRank Solution :: 30 Days Of Code – 1.Data Types