Results 4 comments of Orion Watson

@hzeller - Cloned the verible repo. - Invoked bazel using bazelisk - Ran `bazel build -c opt //...` - Ran `bazel run -c opt :install -- ~/bin && bazel run...

Correct. There are no binaries showing in either installation location

The directories `~/bin` and `~/usr/local/bin` already exist on my machine.

```python class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]: map = {} for i in range(len(nums)): if nums[i] not in map: map[target - nums[i]] = i + 1...