Add files via upload
This commit is contained in:
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"
|
||||
|
||||
Reference in New Issue
Block a user