From fb5bca89fbe7b969558e14be24dcb7cce2d44462 Mon Sep 17 00:00:00 2001 From: MadhavBahlMD Date: Tue, 29 Jan 2019 20:06:43 +0530 Subject: [PATCH] Bug fixes --- BONUS/Arrays/AddAllElements/README.md | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/BONUS/Arrays/AddAllElements/README.md b/BONUS/Arrays/AddAllElements/README.md index a949dc6b..90458b2e 100644 --- a/BONUS/Arrays/AddAllElements/README.md +++ b/BONUS/Arrays/AddAllElements/README.md @@ -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: "); diff --git a/README.md b/README.md index 7b2fd386..29f6848b 100644 --- a/README.md +++ b/README.md @@ -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** |