Codxplore.com

Latest news:

Sahih al-Bukhari (সহীহ বুখারী) is a free Hadith application for android. This application is advertisement free. Download now https://play.google.com/store/apps/details?id=com.akramhossin.bukharisharif

410
Views
Hacker Rank: Day 14: Scope

Hacker Rank: Day 14: Scope

Objective Today we’re discussing scope. The absolute difference between two integers, a and b, is written as |a – b|. The maximum absolute difference between two integers in a set of positive integers, elements, is the largest absolute difference between any two integers in elements. The Difference class is started for you in the editor. It has a private integer array (elements) for storin
366
Views
Hacker Rank: Day 13: Abstract Classes

Hacker Rank: Day 13: Abstract Classes

Objective Today, we will extend what we learned yesterday about Inheritance to Abstract Classes. Because this is a very specific object oriented concept, submissions are limited to the few languages that use this construct. Task Given a Book class and a Solution class, write a MyBook class that does the following: Inherits from Book    Has a parameterized constructor taking these 3 param
239
Views
Hacker Rank: Day 12: Inheritance

Hacker Rank: Day 12: Inheritance

Objective Today, we’re delving into Inheritance.  Task You are given two classes, Person and Student, where Person is the base class and Student is the derived class. Completed code for Person and a declaration for Student are provided for you in the editor. Observe that Student inherits all the properties of Person. Complete the Student class by writing the following: A Student class
231
Views
Hacker Rank: Day 11: 2D Arrays

Hacker Rank: Day 11: 2D Arrays

Objective Today, we are building on our knowledge of arrays by adding another dimension. ContextGiven a 6 x 6 2D Array, A: 1 1 1 0 0 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 We define an hourglass in A to be a subset of values with indices falling in this pattern in A‘s graphical representation: a b c d e f g There are 16 hourglasses in A, and an hourglass
232
Views
Hacker Rank: Day 10: Binary Numbers

Hacker Rank: Day 10: Binary Numbers

Objective Today, we’re working with binary numbers. Task Given a base-10 integer, n, convert it to binary (base-2). Then find and print the base-10 integer denoting the maximum number of consecutive 1‘s in n‘s binary representation. When working with different bases, it is common to show the base as a subscript. Example n = 125 The binary representation of 12510 is 11111012. In base 1
387
Views
Hacker Rank: Day 9: Recursion 3

Hacker Rank: Day 9: Recursion 3

Recursive Method for Calculating Factorial  factorial(N) = {1/n X  factorial(N-1) N ≤ 1/otherwise Function Description Complete the factorial function in the editor below.  Be sure to use recursion. factorial has the following paramter: int n: an integer Returns int: the factorial of n Note: If you fail to use recursion or fail to name your recursive function factorial or Fac
485
Views
Hacker Rank: Day 8: Dictionaries and Maps

Hacker Rank: Day 8: Dictionaries and Maps

Task: Given n names and phone numbers, assemble a phone book that maps friends' names to their respective phone numbers.  You will then be given an unknown number of names to query your phone book for.  For each named queried, print the associated entry from your phone book on a new line in the form name=phoneNumber;  if an entry for name is not found, print Not found instead. Note: Your p
856
Views
Hacker Rank: Day 7 Arrays

Hacker Rank: Day 7 Arrays

Task Given an array,A, of N integers, print A's elements in reverse order as a single line of space-separated numbers. Example A=[1,2,3,4] Print 4 3 2 1. Each integer is separated by one space. Input Format The first line contains an integer,N(the size of our array). The second line contains N space-separated integers that describe array A's elements. Constraints 1
874
Views
Integrate Razorpay in Yii2

Integrate Razorpay in Yii2

Razorpay is the only payments solution in India that allows businesses to accept,  process and disburse payments with its product suite.  It gives you access to all payment modes including credit card, debit card, netbanking,  UPI and popular wallets including JioMoney, Mobikwik, Airtel Money, FreeCharge, Ola Money and PayZapp. Now we will try to integrate Razorpay in Yii2 application. Aft
930
Views
Hacker Rank: Day 6: Let's Review

Hacker Rank: Day 6: Let's Review

Hacker Rank: Day 6: Let's Review Task Given a string,S, of length N that is indexed from 0 to N-1, print its even-indexed and odd-indexed characters as 2 space-separated strings on a single line (see the Sample below for more detail).Note: 0 is considered to be an even index.   Example s = abdecf Print abc def Input Format The first line contains an integer, T(the number of test cases).
951
Views
Hacker Rank: Day 5 Loops

Hacker Rank: Day 5 Loops

Task: Given an integer, n , print its first 10 multiples.  Each multiple n x i (where 1
687
Views
Hacker Rank: Day 4: Class vs. Instance Solution in PHP

Hacker Rank: Day 4: Class vs. Instance Solution in PHP

Task: Write a Person class with an instance variable, age, and a constructor that takes an integer, initialAge, as a parameter. The constructor must assign initialAge to age after confirming the argument passed as initialAge is not negative; if a negative argument is passed as initialAge, the constructor should set age to 0 and print Age is not valid, setting age to 0.. In addition, you must

Subscribe Us


Follow Us