forked from gabrieldim/Markdown-Crash-Course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution-And-Explanation.txt
103 lines (78 loc) · 1.56 KB
/
Solution-And-Explanation.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# Heading 1 '# '
## Heading 2 '## '
### Heading 3 '### '
#### Heading 4 '#### '
##### Heading 5 '##### '
###### Heading 6 '###### '
<br>
<!-- Italics -->
*This text is italic* <br>
_This text is italic_
<br>
<!-- Strong -->
**This text is bold** <br>
__This text is bold__
<br>
<!-- Strikethrough -->
~~This text~~ is strikethrough
<br>
<!-- Horizontal Role -->
---
___
<br>
<!-- Escape char -->
\ before the actual rule.
<br>
<!-- Blackquote -->
> This is a quote
<br>
<!-- Links -->
[Gabriel Dimitrievski - GitHub](https://github.com/gabrieldim)
<br>
<!-- Links cover text-->
[Gabriel Dimitrievski - GitHub](https://github.com/gabrieldim "Follow me :)")
<br>
<!-- Unordered List -->
* Text 1
* Text 2
* Text 3
* Nasted text 1
* Nasted text 2
* Nasted text 1
* Nasted text 2
<br>
<!-- Ordered List -->
1. Text 1
2. Text 2
1. Nasted text 1
5. Text 3 // it gives the appropriate order
<br>
<!-- InLine Code Block -->
`<p>This is paragraph</p>`
<br>
<!-- Images -->

<br>
<!-- Code Blocks -->
```java
//in the previous line we are saying the language that we are using.
BufferedReader br = new BufferedReader(New InputStreamReader(System.in));
String s = br.readLine();
```
<br>
```javascript
function add(num1, num2){
return num1 + num2;
}
```
<br>
<!-- Tables -->
| Name | Email |
| ----- | --------------- |
| Test | Test@gmail.com |
| Test2 | Test2@gmail.com |
<br>
<!-- Task Lists -->
* [x] Task 1
* [x] Task 2
* [ ] Task 3