Add files via upload
This commit is contained in:
parent
907d62c912
commit
0f16deb1a9
File diff suppressed because it is too large
Load Diff
@ -335,9 +335,9 @@
|
|||||||
" \"\"\"`map`, with the result as a list.\"\"\"\n",
|
" \"\"\"`map`, with the result as a list.\"\"\"\n",
|
||||||
" return list(map(function, *sequences))\n",
|
" return list(map(function, *sequences))\n",
|
||||||
"\n",
|
"\n",
|
||||||
"def cat(things: Collection) -> str:\n",
|
"def cat(things: Collection, sep='') -> str:\n",
|
||||||
" \"\"\"Concatenate the things.\"\"\"\n",
|
" \"\"\"Concatenate the things.\"\"\"\n",
|
||||||
" return ''.join(map(str, things))\n",
|
" return sep.join(map(str, things))\n",
|
||||||
" \n",
|
" \n",
|
||||||
"cache = functools.lru_cache(None)\n",
|
"cache = functools.lru_cache(None)\n",
|
||||||
"Ø = frozenset() # empty set"
|
"Ø = frozenset() # empty set"
|
||||||
|
Loading…
Reference in New Issue
Block a user