Traceback (most recent call last):
File "/usr/local/Cellar/pipenv/2018.11.26_2/libexec/bin/pipenv", line 6, in <module>
from pkg_resources import load_entry_point
File "/usr/local/Cellar/python/3.7.4/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pkg_resources/__init__.py", line 3241, in <module>
@_call_aside
File "/usr/local/Cellar/python/3.7.4/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pkg_resources/__init__.py", line 3225, in _call_aside
f(*args, **kwargs)
File "/usr/local/Cellar/python/3.7.4/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pkg_resources/__init__.py", line 3254, in _initialize_master_working_set
working_set = WorkingSet._build_master()
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const print = (obj:any) => { | |
console.log(JSON.stringify(obj, null, 4)); | |
} |
in chrome
$r.store
$r.store.getState()
$r.store.dispatch()
$ /usr/local/bin/node -v
v13.7.0
$ sudo rm -rf /usr/local/{bin/{node,npm},lib/node_modules/npm,lib/node,share/man/*/node.*}
$ /usr/local/bin/node -v
zsh: no such file or directory: /usr/local/bin/node
function solution(A) {
let result = 0;
for (let element of A) {
result ^= element
}
return result
}
-
Date.getTime() Get the time in milliseconds elapsed since .
-
Date.getFullYear() Get the four-digit year ().
-
Date.getMonth() Get the Date object's month as a zero-indexed number ().
-
Date.getDate()
def factorial(n):
if n > 1:
return n * factorial(n-1)
else:
return 1
const fibonacci = n =>
Array.from({ length: n }).reduce(
(acc, val, i) => acc.concat(i > 1 ? acc[i - 1] + acc[i - 2] : i),
[]
);
fibonacci(5);