Skip to content

Conversation

@sumitgupta1312
Copy link

No description provided.

yanzv and others added 20 commits November 1, 2016 16:09
This file contains a solution of Algorithm Implementation's Matrix Layer Rotation(Difficulty: Hard) on HackerRank.
Created MatrixLayerRotation.java
This file contains the solution of Algorithm-> String -> Camel Case problem on HackerRank (https://www.hackerrank.com/challenges/camelcase).
This file contains the solution of HackerRank -> Algorithm -> String -> Beautiful Binary String ( https://www.hackerrank.com/challenges/beautiful-binary-string )
This file contains the solution of HackerRank -> Algorithm -> Implementation -> Divisible Sum Pairs ( https://www.hackerrank.com/challenges/divisible-sum-pairs )
This file contains the solution of HackerRank -> Algorithm -> Implementation -> Save The Prisoner ( https://www.hackerrank.com/challenges/save-the-prisoner )
This file contains a solution of HackerRank -> Algorithm -> Implementation -> Strange Counter ( https://www.hackerrank.com/challenges/strange-code )
This file contains a solution of the bomberman game problem on Hackerrank ( https://www.hackerrank.com/challenges/bomber-man )
Added more solutions
Thank you!
Update PatternSyntaxChecker.java
Create GradingStudents.java
@raginismaurya
Copy link

//Java Program to illustrate the use of Java Method Overriding
//Creating a parent class.
class Vehicle{
//defining a method
void run(){System.out.println("Vehicle is running");}
}
//Creating a child class
class Bike2 extends Vehicle{
//defining the same method as in the parent class
void run(){System.out.println("Bike is running safely");}

public static void main(String args[]){
Bike2 obj = new Bike2();//creating object
obj.run();//calling method
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants