Skip to content

Commit 8c0117d

Browse files
Fix spacing on list of palindrome examples
1 parent e4c2889 commit 8c0117d

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Palindromes/README.markdown

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ Algorithms that check for palindromes are a common programming interview questio
88

99
The word racecar is a valid palindrome, as it is a word spelled the same when backgrounds and forwards. The examples below shows valid cases of the palindrome `racecar`.
1010

11-
`raceCar`
12-
`r a c e c a r`
13-
`r?a?c?e?c?a?r?`
14-
`RACEcar`
11+
```
12+
raceCar
13+
r a c e c a r
14+
r?a?c?e?c?a?r?
15+
RACEcar
16+
```
1517

1618
## Algorithm
1719

0 commit comments

Comments
 (0)