Skip to content
This repository was archived by the owner on Nov 3, 2020. It is now read-only.

Commit d63d015

Browse files
committed
See if this fixes the formatting on GitHub
1 parent 5538c8d commit d63d015

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.mkd

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ these questions for the same candidate.
1818

1919
1. How can you improve the following code?
2020

21-
```python
22-
import string
21+
```python
22+
import string
2323

24-
i = 0
25-
for letter in string.letters:
26-
print("The letter at index %i is %s" % (i, letter))
27-
i = i + 1
28-
```
24+
i = 0
25+
for letter in string.letters:
26+
print("The letter at index %i is %s" % (i, letter))
27+
i = i + 1
28+
```
2929

30-
Bonus points for mentioning `enumerate` and use of `str.format`.
30+
Bonus points for mentioning `enumerate` and use of `str.format`.
3131

3232
2. What's the fastest way to swap the values bound to two variables?
3333

0 commit comments

Comments
 (0)