问题描述 翻转一棵二叉树。 示例: 输入: 4 / \ 2 7 / \ / \1 3 6 9输出: 4 / \ 7 2 / \ / \9 6 3 1备注:这个问题是受到 Max Howell 的 原问题 启发的 : 谷歌:我们90%的工程师使用您编写的软件(Homebrew),但是您却无法在面试时在 ...
分类:
其他好文 时间:
2020-07-22 01:36:38
阅读次数:
78
brew 安装软件比较方便,国内源下载会比较快,但是有时下载会失败 所有有时需要切换国内与默认的源 切换国内源 # 替换brew.git: $ cd "$(brew --repo)" # 中国科大: $ git remote set-url origin https://mirrors.ustc.e ...
分类:
其他好文 时间:
2020-07-20 13:24:54
阅读次数:
75
安装Homebrew /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" Homebrew更换国内镜像源 # 替换 brew.git 仓库地址 cd "$( ...
分类:
系统相关 时间:
2020-07-19 16:04:40
阅读次数:
307
Mac上用 homebrew 装 mysql,解决‘/tmp/mysql.sock‘ 报错
分类:
数据库 时间:
2020-07-19 11:28:16
阅读次数:
80
前言 不管是在brew的安装过程还是升级更新过程中,国内的环境brew都会卡在这里 解决方案 cd /usr/local/Homebrew/Library/Taps/ mkdir homebrew cd homebrew git clone https://mirrors.ustc.edu.cn/h ...
分类:
其他好文 时间:
2020-07-18 16:07:56
阅读次数:
356
Brew发现自动更新homebrew时卡住 博客说明 文章所涉及的资料来自互联网整理和个人总结,意在于个人学习和经验汇总,如有什么地方侵权,请联系本人删除,谢谢! 原因 因为我之前换过源,换成了是阿里的源,然后阿里的源没有cask,所以出错在这里 解决 换成中科大的源 // 替换brew.git: ...
分类:
其他好文 时间:
2020-07-18 00:39:18
阅读次数:
72
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" 来自于知乎大神: 金牛肖马 ...
分类:
系统相关 时间:
2020-07-13 18:03:24
阅读次数:
83
安装 homebrew /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 常用命令 安装软件:brew install 软件名,例:brew insta ...
分类:
系统相关 时间:
2020-07-13 13:51:28
阅读次数:
155
构建项目 将vue项目打包,打包后会在项目根路径下生成一个dist文件,这个就是需要发布到nginx服务器上的静态页面。(不同项目配置的打包命令可能稍有不同) npm run dev 具体看的脚手架 安装Nginx 1、打开terminal终端 2、安装Command Line Tools xcod ...
分类:
系统相关 时间:
2020-07-13 11:38:24
阅读次数:
147
一、通过homebrew查看是否有异常(首先你得安装了Homebrew) $ brew doctor 二、根据提示修改zsh配置 Warning: Homebrew's sbin was not found in your PATH but you have installed formulae t ...
分类:
其他好文 时间:
2020-07-12 18:34:10
阅读次数:
134