Skip to content

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MadhavBahl committed Jan 29, 2019
1 parent f0f5ee5 commit fb5bca8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BONUS/Arrays/AddAllElements/README.md
Expand Up @@ -12,7 +12,7 @@ import java.util.*;
class Play {
public static void main(String[] args) {
// Given array is stored in arr[][]
int[][] arr = {{1, 2, 3, 4}, {1, 2, 3}, {1, 2}, {1}};
int[][] arr = { {1, 2, 3, 4}, {1, 2, 3}, {1, 2}, {1} };

int sum = 0;
System.out.println("The given 2D array is: ");
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -30,7 +30,7 @@ Motivate yourself to code daily till 60 days, and see the magic! Coding will bec
| ---------- | ----- | ------------ | ---------: |
| [Day 1](./Day1) | [The Fizz Buzz Problem](./Day1/) | [http://codetoexpress.tech/dc/day1](http://codetoexpress.tech/dc/day1/) | **Beginner** |
| [Day 2](./Day2) | [String Reversal + Palindrome](./Day2/) | [http://codetoexpress.tech/dc/day2/](http://codetoexpress.tech/dc/day2/) | **Beginner** |
| [Day 3](./Day3) | [The Hamming Distance Problem](./Day3/) | [http://codetoexpress.tech/dc/day3/](http://codetoexpress.tech/dc/day3/) | Beginner |
| [Day 3](./Day3) | [The Hamming Distance Problem](./Day3/) | [http://codetoexpress.tech/dc/day3/](http://codetoexpress.tech/dc/day3/) | **Beginner** |
| [Day 4](./day4) | [Num Vowels + Max Chars](./day4/) | [http://codetoexpress.tech/dc/day4/](http://codetoexpress.tech/dc/day4/) | **Intermediate** |
| [Day 5](./day5) | [Pattern Printing Problems](./day5/) | [http://codetoexpress.tech/dc/day5/](http://codetoexpress.tech/dc/day5/) | **Intermediate** |
| [Day 6](./day6) | [Sentence Cap + Word Reversal + Anagram](./day6/) | [http://codetoexpress.tech/dc/day6/](http://codetoexpress.tech/dc/day6/) | **Intermediate** |
Expand Down

0 comments on commit fb5bca8

Please sign in to comment.