摘要: JS实现继承 方式一:借助call function Parent1() { this.name = 'parent1'; } function Children1() { Parent1.call(this); this.type = 'children1'; } console.log(new 阅读全文
posted @ 2020-11-21 22:45 浪荡&不羁 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 前缀和技巧 前缀和技巧 主要用于解决数组的子数组问题。 使用前缀和的经典题目: 560.Subarray Sum Equals K 930.Binary Subarrays With Sum 1. 什么是前缀和 这里以 LeetCode 的一道题目,560. Subarray Sum Equals 阅读全文
posted @ 2020-11-21 21:14 浪荡&不羁 阅读(153) 评论(0) 推荐(0) 编辑