mirror of
https://github.com/donnemartin/interactive-coding-challenges
synced 2026-01-03 16:08:02 +00:00
Standardize spacing code style (#150)
This commit is contained in:
@@ -100,9 +100,9 @@
|
||||
" if chars is None or not chars:\n",
|
||||
" return chars\n",
|
||||
" size = len(chars)\n",
|
||||
" for i in range(size//2):\n",
|
||||
" chars[i], chars[size-1-i] = \\\n",
|
||||
" chars[size-1-i], chars[i]\n",
|
||||
" for i in range(size // 2):\n",
|
||||
" chars[i], chars[size - 1 - i] = \\\n",
|
||||
" chars[size - 1 - i], chars[i]\n",
|
||||
" return chars"
|
||||
]
|
||||
},
|
||||
@@ -307,7 +307,7 @@
|
||||
"name": "python",
|
||||
"nbconvert_exporter": "python",
|
||||
"pygments_lexer": "ipython3",
|
||||
"version": "3.5.0"
|
||||
"version": "3.4.3"
|
||||
}
|
||||
},
|
||||
"nbformat": 4,
|
||||
|
||||
Reference in New Issue
Block a user