mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-05 09:21:13 +08:00
psf/black code formatting (#1421)
* added sol3.py for problem_20 * added sol4.py for problem_06 * ran `black .` on `\Python`
This commit is contained in:

committed by
Christian Clauss

parent
11e2207182
commit
7592cba417
@ -18,7 +18,7 @@ def encode_base64(text):
|
||||
i = 0
|
||||
while i < len(s):
|
||||
if i > 0 and ((i / 3 * 4) % 76) == 0:
|
||||
r = r + "\r\n" # for unix newline, put "\n"
|
||||
r = r + "\r\n" # for unix newline, put "\n"
|
||||
|
||||
n = (s[i] << 16) + (s[i + 1] << 8) + s[i + 2]
|
||||
|
||||
|
Reference in New Issue
Block a user