Skip to content

Commit ae6da69

Browse files
Add back ticks to answers that do not render colors.
1 parent e91c79c commit ae6da69

File tree

14 files changed

+106
-106
lines changed

14 files changed

+106
-106
lines changed

comp-sci/data-structures-and-algorithms/algorithms-ii/parsing-reverse-polish-notation.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ What values would be left in the stack after the evaluation of `10 5 * 2 + 3 3`?
5858

5959
???
6060

61-
- [52,3,3]
62-
- [55,3]
63-
- [55]
64-
- [58]
65-
- [23,3]
61+
- `[52,3,3]`
62+
- `[55,3]`
63+
- `[55]`
64+
- `[58]`
65+
- `[23,3]`
6666

6767

6868
---

go/go-introduction/range-map-make/make-a-slice.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ Create an integer slice called `slice` with a length of `0` and a capacity of `7
7575
??? := make(???, ???, ???)
7676
```
7777

78-
- slice
79-
- []int
80-
- 0
81-
- 7
82-
- ()int
78+
- `slice`
79+
- `[]int`
80+
- `0`
81+
- `7`
82+
- `()int`

javascript/browser-apis/reading-writing/blobs.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -101,14 +101,14 @@ new ???(
101101
);
102102
```
103103
104-
- Blob
105-
- ["parts"]
106-
- type
107-
- endings
108-
- blob
109-
- "parts"
110-
- mimeType
111-
- newLines
104+
- `Blob`
105+
- `["parts"]`
106+
- `type`
107+
- `endings`
108+
- `blob`
109+
- `"parts"`
110+
- `mimeType`
111+
- `newLines`
112112
113113
114114
---

javascript/ecmascript-2015/array-updates/array-extensions.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -93,20 +93,20 @@ console.log(???.value)
9393
// ???
9494
```
9595
96-
- entries
97-
- next
98-
- value
99-
- 1
100-
- second
101-
- [1, 1]
102-
- [1, 4]
103-
- [0, 1]
104-
- first
105-
- keys
106-
- iterator
107-
- toIterator
108-
- key
109-
- 2
110-
- 3
111-
- 0
96+
- `entries`
97+
- `next`
98+
- `value`
99+
- `1`
100+
- `second`
101+
- `[1, 1]`
102+
- `[1, 4]`
103+
- `[0, 1]`
104+
- `first`
105+
- `keys`
106+
- `iterator`
107+
- `toIterator`
108+
- `key`
109+
- `2`
110+
- `3`
111+
- `0`
112112

javascript/ecmascript-2015/destructuring/destructuring-part-3.md

+20-20
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ console.log(z)
6868
// z == 15
6969
```
7070
71-
- x,
72-
- ,
73-
- z
74-
- x
75-
- y
76-
- ,y
77-
- y,
78-
- ,x
71+
- `x,`
72+
- `,`
73+
- `z`
74+
- `x`
75+
- `y`
76+
- `,y`
77+
- `y,`
78+
- `,x`
7979
8080
8181
---
@@ -92,16 +92,16 @@ let x, y, z;
9292
// z = ???
9393
```
9494
95-
- 10
96-
- undefined
97-
- 30
98-
- 20
99-
- [20]
100-
- [10, 30]
101-
- [10, 20]
102-
- [20, 30]
103-
- [10, 20, 30]
104-
- null
105-
- [10]
106-
- [30]
95+
- `10`
96+
- `undefined`
97+
- `30`
98+
- `20`
99+
- `[20]`
100+
- `[10, 30]`
101+
- `[10, 20]`
102+
- `[20, 30]`
103+
- `[10, 20, 30]`
104+
- `null`
105+
- `[10]`
106+
- `[30]`
107107

javascript/ecmascript-2015/promises/promise-api-methods.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,15 @@ Promise.race([p1, p2, p3]).then(res =>
8686
// ???
8787
```
8888

89-
- ['a', 'b', 'c']
90-
- 'b'
91-
- 'a'
92-
- 'c'
93-
- ['b', 'c', 'a']
94-
- ['a', 'c', 'b']
95-
- ['b', 'a', 'c']
96-
- ['c', 'b', 'a']
97-
- ['c', 'a', 'b']
89+
- `['a', 'b', 'c']`
90+
- `'b'`
91+
- `'a'`
92+
- `'c'`
93+
- `['b', 'c', 'a']`
94+
- `['a', 'c', 'b']`
95+
- `['b', 'a', 'c']`
96+
- `['c', 'b', 'a']`
97+
- `['c', 'a', 'b']`
9898

9999

100100
---

javascript/ecmascript-2015/spread-map-set-math/spread-part-2.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ console.log(final);
9696
// ???
9797
```
9898
99-
- [3, 6, 2, 4, 3, 6, 2, 3, 6, 2]
100-
- [4, 3, 6, 2, 3, 6, 2, 3, 6, 2]
101-
- [3, 6, 2, 3, 6, 2, 4, 3, 6, 2]
102-
- [3, 6, 2, 2, 3, 6, 2, 4, 6, 2]
99+
- `[3, 6, 2, 4, 3, 6, 2, 3, 6, 2]`
100+
- `[4, 3, 6, 2, 3, 6, 2, 3, 6, 2]`
101+
- `[3, 6, 2, 3, 6, 2, 4, 3, 6, 2]`
102+
- `[3, 6, 2, 2, 3, 6, 2, 4, 6, 2]`
103103
104104
105105
---

javascript/ecmascript-2015/symbol/symbol-special-properties.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@ console.log(
126126
// ???
127127
```
128128

129-
- []
130-
- ['Symbol()']
131-
- ['Symbol(enki)']
132-
- ['Symbol()', 'Symbol(enki)']
129+
- `[]`
130+
- `['Symbol()']`
131+
- `['Symbol(enki)']`
132+
- `['Symbol()', 'Symbol(enki)']`
133133

python/functional-programming/comprehension/list-comprehension.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -100,12 +100,12 @@ l = [1,2,3,4,5]
100100
x = [((x+1)/2) ??? x % 2 ??? x ??? x in ???]
101101
```
102102

103-
- if
104-
- else
105-
- for
106-
- l
107-
- x
108-
- while
103+
- `if`
104+
- `else`
105+
- `for`
106+
- `l`
107+
- `x`
108+
- `while`
109109

110110

111111
---
@@ -121,8 +121,8 @@ x = [x if x % 2 for x in l]
121121

122122
???
123123

124-
- [1,3,5]
125-
- [1,3]
126-
- [2, 4]
127-
- [1,2,3,4,5]
124+
- `[1,3,5]`
125+
- `[1,3]`
126+
- `[2, 4]`
127+
- `[1,2,3,4,5]`
128128

python/python-core/advanced-queues/prioritize-your-queue.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,12 @@ temp.put(Order(1000))
9494
# 1000 / 10 / 1
9595
```
9696

97-
- priority
97+
- `priority`
9898
- `__lt__`
9999
- `>`
100-
- PriorityQueue()
100+
- `PriorityQueue()`
101101
- `<`
102-
- queue
102+
- `queue`
103103
- `__order__`
104104

105105

python/python-core/python-recipes/parallel-sorting-of-lists.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,6 @@ cities, temps = zip(*sorted(zipped))
8989

9090
???
9191

92-
- [12, 17, 16, 21]
93-
- [12, 16, 17, 21]
94-
- [12, 16, 21, 16]
92+
- `[12, 17, 16, 21]`
93+
- `[12, 16, 17, 21]`
94+
- `[12, 16, 21, 16]`

python/python-core/sequential-data-types-ii/del-statement-for-lists.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,11 @@ print(e)
8888
???
8989
```
9090

91-
- [7, 8, 15, 19]
92-
- [7, 8, 19]
93-
- []
94-
- [7, 11, 15, 19]
95-
- [7, 15, 19]
91+
- `[7, 8, 15, 19]`
92+
- `[7, 8, 19]`
93+
- `[]`
94+
- `[7, 11, 15, 19]`
95+
- `[7, 15, 19]`
9696

9797

9898
---

regular-expressions/regular-expressions-introduction/more-practical-examples/credit-cards-i.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ Imagine that we don't want to include hyphens or spaces in our pattern for Visa
6262

6363
???
6464

65-
- [-\s]?
66-
- [-\s]
67-
- ?
68-
- \d
65+
- `[-\s]?`
66+
- `[-\s]`
67+
- `?`
68+
- `\d`
6969

7070

7171
---
@@ -78,10 +78,10 @@ Imagine that we don't want to include hyphens or spaces in our pattern for Ameri
7878

7979
???
8080

81-
- [-\s]?
82-
- [-\s]
83-
- ?
84-
- \d
81+
- `[-\s]?`
82+
- `[-\s]`
83+
- `?`
84+
- `\d`
8585

8686

8787
---

typescript/typescript-introduction/tsc-classes-and-interfaces/tsc-interfaces-intro.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -102,12 +102,12 @@ let reader??? = {
102102
};
103103
```
104104

105-
- Array<Book>
106-
- : BookReader
107-
- satisfy BookReader
108-
- []Book
109-
- = BookReader
110-
- Array<string>
105+
- `Array<Book>`
106+
- `: BookReader`
107+
- `satisfy BookReader`
108+
- `[]Book`
109+
- `= BookReader`
110+
- `Array<string>`
111111

112112
---
113113

0 commit comments

Comments
 (0)