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",
|
||||
" return list(map(function, *sequences))\n",
|
||||
"\n",
|
||||
"def cat(things: Collection) -> str:\n",
|
||||
"def cat(things: Collection, sep='') -> str:\n",
|
||||
" \"\"\"Concatenate the things.\"\"\"\n",
|
||||
" return ''.join(map(str, things))\n",
|
||||
" return sep.join(map(str, things))\n",
|
||||
" \n",
|
||||
"cache = functools.lru_cache(None)\n",
|
||||
"Ø = frozenset() # empty set"
|
||||
|
Loading…
Reference in New Issue
Block a user