Skip to content

Commit e06f20d

Browse files
Merge pull request kunal-kushwaha#580 from SurajPratap10/main
📝 Update CONTRIBUTION.md
2 parents b2b923d + fb35863 commit e06f20d

File tree

5 files changed

+28
-20
lines changed

5 files changed

+28
-20
lines changed

ASSIGNMENT_SOLUTIONS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 💡SOLUTIONS
22

3-
## Public repositories that contain solutions for [assignments](https://github.com/kunal-kushwaha/DSA-Bootcamp-Java/tree/main/assignments)
3+
## Public repositories that contain solutions for [assignments] --> (https://github.com/kunal-kushwaha/DSA-Bootcamp-Java/tree/main/assignments)
44

55
### Java
66

CODE_OF_CONDUCT.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,24 +17,24 @@ diverse, inclusive, and healthy community.
1717
Examples of behavior that contributes to a positive environment for our
1818
community includes:
1919

20-
* Demonstrating empathy and kindness toward other people
21-
* Being respectful of differing opinions, viewpoints, and experiences
22-
* Giving and gracefully accepting constructive feedback
20+
* Demonstrating empathy and kindness toward other people.
21+
* Being respectful of differing opinions, viewpoints, and experiences.
22+
* Giving and gracefully accepting constructive feedback.
2323
* Accepting responsibility and apologizing to those affected by our mistakes,
24-
and learning from the experience
24+
and learning from the experience.
2525
* Focusing on what is best not just for us as individuals, but for the
26-
overall community
26+
overall community.
2727

2828
Examples of unacceptable behavior include:
2929

3030
* The use of sexualized language or imagery, and sexual attention or
31-
advances of any kind
31+
advances of any kind.
3232
* Trolling, insulting or derogatory comments, and personal or political attacks
33-
* Public or private harassment
33+
* Public or private harassment.
3434
* Publishing other's private information, such as a physical or email
35-
address, without their explicit permission
35+
address, without their explicit permission.
3636
* Other conduct which could reasonably be considered inappropriate in a
37-
professional setting
37+
professional setting.
3838

3939
## Enforcement Responsibilities
4040

@@ -123,6 +123,5 @@ enforcement ladder](https://github.com/mozilla/diversity).
123123

124124
[homepage]: https://www.contributor-covenant.org
125125

126-
For answers to common questions about this code of conduct, see the FAQ at
127-
https://www.contributor-covenant.org/faq. Translations are available at
128-
https://www.contributor-covenant.org/translations.
126+
For answers to common questions about this code of conduct, see the FAQ at:(https://www.contributor-covenant.org/faq).
127+
Translations are available at:(https://www.contributor-covenant.org/translations).

CONTRIBUTION.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,27 @@
66

77

88
```git clone https://github.com/your_user_name/DSA-Bootcamp-Java.git```
9+
10+
3. Check that your fork is the "origin" remote.
11+
12+
13+
```git remote add origin URL_OF_FORK```
14+
15+
4. Add the project repository as the "upstream" remote.
916

17+
```git remote add upstream URL_OF_FORK```
1018

11-
3. Create a new Branch:
19+
5. Create a new Branch:
1220

1321

1422
```git branch -YourBranchName-```
1523

1624

1725
```git checkout -YourBranchName-```
1826

19-
4. Make your contributions.
27+
6. Make your contributions.
2028

21-
5. Stage your changes and make a commit.
29+
7. Stage your changes and make a commit.
2230

2331

2432
```git add .```
@@ -27,9 +35,9 @@
2735
```git commit -m "<your_commit_message>"```
2836

2937

30-
6. Push your local commits to the remote Repository.
38+
8. Push your local commits to the remote Repository.
3139

3240

3341
```git push origin -YourBranchName-```
3442

35-
7. Create a PR.
43+
9. Create a PR.

NOTES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
- [Divija Kinger](https://github.com/divijakinger/DSA_Java)
55
- [Vrukshali Torawane](https://github.com/Vrukshali-26/DSA)
66
- [Anuja Kumari](https://github.com/Anujakumari/DSA)
7+
78
- DSA-Java
89
- [GitHub-Repo](https://github.com/Utkarsh1504/DSA-Java) - for contribution
910
- [Notes-website](https://utkarsh1504.github.io/DSA-Java/) - for revision

assignments/02-first-java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
## Write Java programs for the following:
44

55
1. Write a program to print whether a number is even or odd, also take
6-
input.
7-
2. Take name as input and print a greeting message for that name.
6+
input from the user.
7+
2. Take name as input and print a greeting message for that particular name.
88
3. Write a program to input principal, time, and rate (P, T, R) from the user and
99
find Simple Interest.
1010
4. Take in two numbers and an operator (+, -, *, /) and calculate the value.

0 commit comments

Comments
 (0)