File tree Expand file tree Collapse file tree 1 file changed +20
-10
lines changed Expand file tree Collapse file tree 1 file changed +20
-10
lines changed Original file line number Diff line number Diff line change @@ -25,16 +25,26 @@ The project includes **four tasks (Q1.1 – Q1.4)** focused on functional-style
2525
2626## 📁 Project Structure
2727
28- | File | Description | Category |
29- | ------| -------------| ----------|
30- | ` src/QuestionOne.java ` | Converts a list of strings to uppercase using Streams | Q1.1 |
31- | ` src/QuestionTwo.java ` | Filters non‑empty strings from a list | Q1.2 |
32- | ` src/QuestionThree.java ` | Filters names starting with 'A' using Stream + Lambda | Q1.3 |
33- | ` src/QuestionFour.java ` | Calculates user age using ` LocalDate ` | Q1.4 |
34- | ` screenshots/1.png ` | Screenshot for Q1.1 | Screenshot |
35- | ` screenshots/2.png ` | Screenshot for Q1.2 | Screenshot |
36- | ` screenshots/3.png ` | Screenshot for Q1.3 | Screenshot |
37- | ` screenshots/4.png ` | Screenshot for Q1.4 | Screenshot |
28+ java-advanced-streams-lambda-date/
29+ │
30+ ├── .github/
31+ │ └── workflows/
32+ │ └── java-build.yml
33+ │
34+ ├── screenshots/
35+ │ ├── 1.png
36+ │ ├── 2.png
37+ │ ├── 3.png
38+ │ └── 4.png
39+ │
40+ ├── src/
41+ │ ├── QuestionFour.java
42+ │ ├── QuestionOne.java
43+ │ ├── QuestionThree.java
44+ │ └── QuestionTwo.java
45+ │
46+ ├── LICENSE
47+ └── README.md
3848
3949---
4050
You can’t perform that action at this time.
0 commit comments