Skip to content

Commit b76b393

Browse files
authored
Update README.md
1 parent 5bf5fed commit b76b393

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -120,15 +120,15 @@
120120
10. Find sum of each row and each column of the Matrix. [[Solution]](InterviewPrograms/src/com/java/matrix/RowSumColumnSum.java)
121121

122122
# Print the Series
123-
1. Write the Java Program to print the following series (EVEN number series) [[Solution]](InterviewPrograms/src/com/java/series/EvenNumberSeries.java)
123+
1. Write the Java Program to print the following series ***EVEN number Series*** [[Solution]](InterviewPrograms/src/com/java/series/EvenNumberSeries.java)
124124
```
125125
2 4 6 8 10 12 14 16 .....
126126
```
127-
2. Write the Java Program to print the following series (ODD number series) [[Solution]](InterviewPrograms/src/com/java/series/OddNumberSeries.java)
127+
2. Write the Java Program to print the following series ***ODD number Series*** [[Solution]](InterviewPrograms/src/com/java/series/OddNumberSeries.java)
128128
```
129129
1 3 5 7 9 11 13 ....
130130
```
131-
3. Write the Java Program to print the following series (Pattern Series) [[Solution]](InterviewPrograms/src/com/java/series/PatternSeries.java)
131+
3. Write the Java Program to print the following series ***Pattern Series*** [[Solution]](InterviewPrograms/src/com/java/series/PatternSeries.java)
132132
```
133133
3, 33, 333, 3333, 33333, 333333 ....
134134
```
@@ -144,23 +144,23 @@
144144
```
145145
2 9 28 65 126 217 344
146146
```
147-
7. Write the Java Program to print the following series (Geometric progression) [[Solution]](InterviewPrograms/src/com/java/series/GeometricProgression.java)
147+
7. Write the Java Program to print the following series ***Geometric Progression*** [[Solution]](InterviewPrograms/src/com/java/series/GeometricProgression.java)
148148
```
149149
1 2 4 8 16 32 64 128 256 512 1024 ......
150150
```
151-
8. Write the Java Program to print the following series (Arithmetic progression)
151+
8. Write the Java Program to print the following series ***Arithmetic Progression***
152152
```
153153
0 5 10 15 20 25 30 35 ....
154154
```
155-
9. Write the Java Program to print the following series (Fibonacci Series)
155+
9. Write the Java Program to print the following series ***Fibonacci Series*** [[Solution]](InterviewPrograms/src/com/java/series/FibonacciSeries.java)
156156
```
157157
1 1 2 3 5 8 13 21 34 55 89 .....
158158
```
159-
10. Write the Java Program to print the following series (Prime Number Series) [[Solution]](InterviewPrograms/src/com/java/series/PrimeNumberSeries.java)
159+
10. Write the Java Program to print the following series ***Prime Number Series*** [[Solution]](InterviewPrograms/src/com/java/series/PrimeNumberSeries.java)
160160
```
161161
2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 .....
162162
```
163-
11. Write the Java Program to print the following series (Triangular Number Series) [[Solution]](InterviewPrograms/src/com/java/series/TriangularSeries.java)
163+
11. Write the Java Program to print the following series ***Triangular Number Series*** [[Solution]](InterviewPrograms/src/com/java/series/TriangularSeries.java)
164164
```
165165
1 3 6 10 15 21 28 36 45 55 .....
166166
```

0 commit comments

Comments
 (0)