Day7: Started learning about design patterns from the below site.
oodesign.com/
Tomorrow's task:
1. Will continue to tomorrow as well.
2. Revise previous data structures learnt.
3. Solve 1-2 problems from geeks for geeks.
#100daysofcoding@100daysofcoding
What I learnt in last 5 days.
-- LinkedList and its basic operations
-- Binary Search Tree and its basic operations
-- Heap Sort
It's going good. I'm loving it.
#100daysofcoding
Day3: Solved below.
1. Parentheses checker
2. Reverse words sequence in a string
Learning: When splitting the string using dot(.) as delimiter, make sure to escape it. I spent quite amount of time to resolve this.
String[] s = str.split("\\.");
#100daysofcoding@100daysofcoding