Skip to content

Change the username from MadhavBahlMD to MadhavBahl #369 #370

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Oct 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"commit": true,
"contributors": [
{
"login": "MadhavBahlMD",
"login": "MadhavBahl",
"name": "MADHAV BAHL",
"avatar_url": "https://avatars2.githubusercontent.com/u/26179770?v=4",
"profile": "http://madhavbahl.tech/",
Expand Down Expand Up @@ -328,6 +328,15 @@
"doc",
"code"
]
},
{
"login": "mihirg008",
"name": "Mihir Gupta",
"avatar_url": "https://avatars3.githubusercontent.com/u/32246337?s=460&u=26abf142607d487660a12fcc8b508407b0896c8c&v=4",
"profile": "https://github.com/mihirg008",
"contributions": [
"doc"
]

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can run the npm run contributors:generate command mentioned in the Contributing document to add your name to the Contributors document

}
],
"commitConvention": "none"
Expand Down
2 changes: 1 addition & 1 deletion BONUS/Arrays/CheckIdentity/CheckIdentity.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Check Identity Matrix
* @author MadhavBahlMD
* @author MadhavBahl
* @date 26/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Arrays/CheckIdentity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ WAP to find whether the given NxN matix is an identity matrix
```java
/**
* Check Identity Matrix
* @author MadhavBahlMD
* @author MadhavBahl
* @date 26/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Arrays/Reverse/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ WAP to reverse the given array
```java
/**
* Array Reversal
* @author MadhavBahlMD
* @author MadhavBahl
* @date 26/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Arrays/Reverse/Reverse.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Array Reversal
* @author MadhavBahlMD
* @author MadhavBahl
* @date 26/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Misc/CircleArea/CircleArea.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @author MadhavBahlMD
* @author MadhavBahl
* @date 25/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Misc/CircleArea/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ WAP to read the radius and print the area of a circle

```java
/**
* @author MadhavBahlMD
* @author MadhavBahl
* @date 25/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Misc/LeapYear/LeapYear.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @author MadhavBahlMD
* @author MadhavBahl
* @date 26/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Misc/LeapYear/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ WAP to check whether the given year is a leap year or not

```java
/**
* @author MadhavBahlMD
* @author MadhavBahl
* @date 26/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Misc/NaturalSum/NaturalSum.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Natural Sum using recursion
* @author MadhavBahlMD
* @author MadhavBahl
* @date 26/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Misc/NaturalSum/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ WAP to sum first `n` natural numbers
```java
/**
* Natural Sum using recursion
* @author MadhavBahlMD
* @author MadhavBahl
* @date 26/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Misc/OddEve/OddEven.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import java.util.Scanner;

/**
* @author MadhavBahlMD
* @author MadhavBahl
* @date 25/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Misc/OddEve/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Give a number, write a program to check whether it is odd or even
import java.util.Scanner;

/**
* @author MadhavBahlMD
* @author MadhavBahl
* @date 25/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Misc/Reverse/Reverse.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Reverse Array
* @author MadhavBahlMD
* @author MadhavBahl
* @date 26/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Misc/SumSquares/SumSquares.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Sum of squares
* @author MadhavBahlMD
* @author MadhavBahl
* @date 26/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Bonus Problems

A real coder should not be satisfied by doing only one problem daily, rather he/she should keep coding as much as possible. So, here I ([@MadhavBahlMD](https://github.com/MadhavBahlMD)) am adding some more problems that you can practise 😃
A real coder should not be satisfied by doing only one problem daily, rather he/she should keep coding as much as possible. So, here I ([@MadhavBahl](https://github.com/MadhavBahl)) am adding some more problems that you can practise 😃

Also, these problems have been taking form various sources, so ig you think you own any of the given problems, just send me an email at [email protected] and I will be more than happy to give proper credits 😊

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Recursion/ArrayProduct/ArrayProd.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Product of array elements using recursion
* @author MadhavBahlMD
* @author MadhavBahl
* @date 18/01/2019
*/

Expand Down
4 changes: 2 additions & 2 deletions BONUS/Recursion/ArrayProduct/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ output: 120
```js
/**
* Find Product of array elements
* @author MadhavBahlMD
* @author MadhavBahl
* @date 18/01/2019
*/

Expand All @@ -34,7 +34,7 @@ console.log ('Product of elements of [2, 3, 4, 5] is: ', findProduct (arr, arr.l
```java
/**
* Product of array elements using recursion
* @author MadhavBahlMD
* @author MadhavBahl
* @date 18/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Recursion/ArrayProduct/arrayProd.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Find Product of array elements
* @author MadhavBahlMD
* @author MadhavBahl
* @date 18/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Recursion/ArraySum/ArraySum.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* Recursive Array Sum
* @author MadhavBahlMD
* @author MadhavBahl
* @date 18/01/2019
*/

Expand Down
4 changes: 2 additions & 2 deletions BONUS/Recursion/ArraySum/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ output: 15

```js
/**
* @author MadhavBahlMD
* @author MadhavBahl
* @date 18/01/2019
* Array Elements Sum using Recursion
*/
Expand All @@ -36,7 +36,7 @@ import java.util.Scanner;

/**
* Recursive Array Sum
* @author MadhavBahlMD
* @author MadhavBahl
* @date 18/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Recursion/ArraySum/arraySum.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @author MadhavBahlMD
* @author MadhavBahl
* @date 18/01/2019
* Array Elements Sum using Recursion
*/
Expand Down
2 changes: 1 addition & 1 deletion BONUS/Recursion/Fibonacci/Fibonacci.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* Nth element of fibonacci series using recursion
* @author MadhavBahlMD
* @author MadhavBahl
* @date 18/01/2019
*/

Expand Down
4 changes: 2 additions & 2 deletions BONUS/Recursion/Fibonacci/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ output: 13
```js
/**
* Fibonacci Series Using Recursion
* @author MadhavBahlMD
* @author MadhavBahl
* @date 18/01/2019
*/

Expand All @@ -38,7 +38,7 @@ import java.util.Scanner;

/**
* Nth element of fibonacci series using recursion
* @author MadhavBahlMD
* @author MadhavBahl
* @date 18/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Recursion/Fibonacci/fibonacci.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Fibonacci Series Using Recursion
* @author MadhavBahlMD
* @author MadhavBahl
* @date 18/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Recursion/NaturalSum/NaturalSum.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Natural Sum using recursion
* @author MadhavBahlMD
* @author MadhavBahl
* @date 26/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Recursion/NaturalSum/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ WAP to sum first `n` natural numbers
```java
/**
* Natural Sum using recursion
* @author MadhavBahlMD
* @author MadhavBahl
* @date 26/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Recursion/Power/Power.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @author @MadhavBahlMD
* @author @MadhavBahl
* @date 18/01/2019
*/

Expand Down
4 changes: 2 additions & 2 deletions BONUS/Recursion/Power/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ output: 100

```java
/**
* @author @MadhavBahlMD
* @author @MadhavBahl
* @date 18/01/2019
*/

Expand Down Expand Up @@ -50,7 +50,7 @@ public class Power {
```js
/**
* Finding `a` raised to the power `n` rercursively
* @author MadhavBahlMD
* @author MadhavBahl
* @date 18/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Recursion/Power/power.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Finding `a` raised to the power `n` rercursively
* @author MadhavBahlMD
* @author MadhavBahl
* @date 18/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Recursion/Recursion/Factorial.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Factorial using recursion
* @author MadhavBahlMD
* @author MadhavBahl
* @date 18/01/2019
*/

Expand Down
4 changes: 2 additions & 2 deletions BONUS/Recursion/Recursion/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ output: 120
```java
/**
* Factorial using recursion
* @author MadhavBahlMD
* @author MadhavBahl
* @date 18/01/2019
*/

Expand Down Expand Up @@ -50,7 +50,7 @@ public class Factorial {
```js
/**
* Factorial usinig recursion
* @author MadhavBahlMD
* @author MadhavBahl
* @date 18/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Recursion/Recursion/factorial.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Factorial usinig recursion
* @author MadhavBahlMD
* @author MadhavBahl
* @date 18/01/2019
*/

Expand Down
6 changes: 3 additions & 3 deletions BONUS/Recursion/ReverseArray/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ output: [4, 3, 2, 1]
/**
* Reverse an array using recursion
* Method 1
* Implemented by MadhavBahlMD
* Implemented by MadhavBahl
* @date 18/01/2019
*/

Expand All @@ -35,7 +35,7 @@ console.log (reverseArray([1, 2, 3, 4]));
/**
* Reverse an array using recursion
* Method 1
* Implemented by MadhavBahlMD
* Implemented by MadhavBahl
* @date 18/01/2019
*/

Expand All @@ -62,7 +62,7 @@ import java.util.Scanner;

/**
* Reverse an array using recursion
* @author MadhavBahlMD
* @author MadhavBahl
* @date 18/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Recursion/ReverseArray/ReverseArray.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* Reverse an array using recursion
* @author MadhavBahlMD
* @author MadhavBahl
* @date 18/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Recursion/ReverseArray/reverseArray.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Reverse an array using recursion
* Method 1
* Implemented by MadhavBahlMD
* Implemented by MadhavBahl
* @date 18/01/2019
*/

Expand Down
2 changes: 1 addition & 1 deletion BONUS/Recursion/ReverseArray/reverseArray2.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Reverse an array using recursion
* Method 1
* Implemented by MadhavBahlMD
* Implemented by MadhavBahl
* @date 18/01/2019
*/

Expand Down
Loading