William Du

Results 7 comments of William Du

先安装助手,然后在更改微信的位置。

> 贪心算法可以认为是动态规划算法的一个特例 那是否认为所有的贪心解法都可以用动态规划来实现呢?

515 的题其实利用层序遍历有一种更通用的模板: ```JavaScript var largestValues = function(root) { const level = [] const traverse = (root, depth) => { if(!root) return if(!level[depth]) level[depth] = [] traverse(root.left, depth+1) level[depth].push(root.val) traverse(root.right, depth+1)...

@luckman212 @lipengzhou @fishme My System is Mojave 10.14.1 (18B75),I can use this extension. You should read the readme documentation carefully and **restart your computer**.

thumbnail 用本地图片问题太多,按照楼上的方法,在主页可以正常显示图片,但是在归档那里又不好使了,建议大家用网络图片吧。

@lixueninggg 我用的是3.x 版本,我找到原因了,是配置路径的问题。如果你没添加新的模型,用我下面的这个配置,脚本路径,插件路径,模型路径用默认的就好。 ``` live2d: model: scale: 1 hHeadPos: 0.5 vHeadPos: 0.618 display: superSample: 2 width: 150 height: 300 position: left hOffset: 0 vOffset: -20 mobile: show: true scale: 0.5...