修理に出していたMacが帰ってきたので、TimeMachineを用いてデータを移行したら、
protectedcloudkeysyncing wants to use the local items
のPop upが出続けて詰んだ。Alfred4すら起動されない…
scalaで数字をサンプリングしファイルに書き込むことを行っていた
for {
_ <- 1 to 10000
} {
file.write(Functions.sample().toString + "\n" )
}
pipenv コマンドを打ってもエラーが出てしまった
$ pip install pipenv$ pipenv — python 3.5Traceback (most recent call last): File “/usr/local/Cellar/pipenv/2018.7.1/libexec/bin/pipenv”, line 6, in <module>…
https://leetcode.com/problems/number-of-connected-components-in-an-undirected-graph/
連結グラフの数を数える問題
class Solution(object): def countComponents(self, n, edges)…
This problem is difficult for me.
class Solution(object): def kSmallestPairs(self, nums1, nums2, k): """ :type nums1: List[int] :type nums2: List[int] :type k: int :rtype: List[List[int]]…
My submission is below.
import bisect
I want to become someone who can solve and explain coding problem. So I tried to explain AtCoder Problem.
Spark(PySpark)を本格的に触ることになりそうなので、その勉強のためにつまみ読みした。