- 博客(2449)
- 资源 (192)
- 收藏
- 关注

原创 数据仓库Build The Data Warehouse(William H.Inmon)学习笔记目录
Inmon是经典的范式建模大师,该笔记目录是数据仓库Build The Data Warehouse(William H.Inmon)的学习笔记,内容包含书内的经典干货、随手结合实际经验的笔记心得;有相关的数据仓库建模问题可以私聊我讨论,互相学习!--- 文章持续更新中!---第一章数据仓库Build The Data Warehouse(William H.Inmon)学习笔记 --- 第一章、决策支持系统的发展第二章数据仓库Build The Data W...
2020-07-16 15:44:41
1777

原创 设计模式学习笔记汇总目录
这里的的学习笔记包含JavaSE和J2EE两部分,持续更新中!其中关于学习的参考资料如下:1.菜鸟设计模式2.Head First Design Patterns(书、强烈推荐);3.大话设计模式(书、适合入门);相关的代码下载:GitHub源码设计模式学习笔记 --- 1.简单工厂模式 设计模式学习笔记 --- 2.抽象工厂模式 设计模式学习笔记 --- 3.单...
2020-04-28 21:08:53
1152

原创 大数据之路、阿里巴巴大数据实践读书笔记目录
该系列持续更新中:第一章:大数据之路、阿里巴巴大数据实践读书笔记 --- 第一章、总述第二章:大数据之路、阿里巴巴大数据实践读书笔记 --- 第二章、日志采集第三章:大数据之路、阿里巴巴大数据实践读书笔记 --- 第三章、数据同步...
2020-01-12 02:09:19
2068

原创 送给订阅我专栏同学们一封信
非常感谢大家来订阅我的专栏,最早开始写博客是由于为了记笔记,大学时期打ACM,玩C/C++,毕业之后从事大数据 + 机器学习。后来逐渐变成了把自己做过的每一次项目实战的问题,技术调研、开发技能等都记录下来,到现在形成了简单的部分规模专栏。因此大家在看的时候有些文章可能不太具体,但是我会为订阅同学提供好服务。订阅的同学如果对我的文章或者某些技术问题感兴趣或者不懂得,可以私信问...
2020-01-05 19:55:40
2196
2
原创 LeetCode --- 2269. Find the K-Beauty of a Number 解题报告
类似的题目一样是找到K-Beauty数字的定义,首先长度是k,然后能被num整除,那么直接模拟计算即可
2025-04-21 01:46:27
72
原创 LeetCode --- 2264. Largest 3-Same-Digit Number in String 结题报告
题意是给定一组字符串数字,判断是否包含三个连续的相同字符串,包含的话返回最大的,否则返回空字符串。这里直接打表即可。
2025-04-21 01:33:28
108
原创 LeetCode --- 2259. Remove Digit From Number to Maximize Result 解题报告
解题思路就是模拟remove操作,利用逻辑int(number[:i] + number[i+1:])找出符合对比的列表,取最大即可
2025-04-12 02:29:14
136
原创 LeetCode --- 2255. Count Prefixes of a Given String 解题报告
直接判断字符串前缀的逻辑startswith即可
2025-04-12 01:51:23
120
原创 LeetCode --- 2248. Intersection of Multiple Arrays 解题报告
首先为了取交集且因为大小的限制我们直接构造一个set(1...1000)然后利用Python的交集函数&直接几轮下来判断即可。
2025-04-09 00:39:34
54
原创 LeetCode --- 2243. Calculate Digit Sum of a String 解题报告
题目其实就是让你的代码进行规则模拟,按照给定的操作步骤进行分组,然后链接再次进行转换计算,直到拼接后的长度小于等于K即可。
2025-04-09 00:08:26
123
原创 LeetCode --- 2239. Find Closest Number to Zero 结题报告
直接将给定的数字按照与0的距离以及当前的大小做对比,然后对二元组进行取最大即可,这里为了满足顺序由小变大使用-负号进行计算直接取max(正数取到最大,负数取到最小)
2025-04-08 01:33:17
43
原创 LeetCode --- 2236. Root Equals Sum of Children 结题报告
就是计算先序遍历的二叉树计算两个子节点之和是否等于父节点之和
2025-04-08 01:16:33
53
原创 LeetCode --- 2231. Largest Number After Digit Swaps by Parity 解题报告
Solution:总结是分治思想,其中我们要对所有的奇数和偶数排序。然后返回组合后最大的。我的思路是先记录每个元素是奇数还是偶数。然后分别对奇数偶数排序,最后按照记录的奇数偶数特性还原排序后的数组。
2025-03-03 22:45:40
219
原创 LeetCode --- 2224. Minimum Number of Operations to Convert Time 解题报告
Solutions:题意其实是要计算时间差,这里我们利用函数,把当前给定的两个字符串带入拼接datetime格式中利用时间差函数计算,在分别对已给定的60、15、5、1对比,即可知道转换了多少次
2025-03-02 23:42:53
95
原创 LeetCode --- 2220. Minimum Bit Flips to Convert Number 解题报告
Solution:题意是给定一两个数字start和goal,其中需要分别进行二进制转换这里使用format函数转换即可,然后再基于给定规则进行位数补充。最后对比差异值即可
2025-03-02 23:06:48
107
原创 LeetCode --- 2215. Find the Difference of Two Arrays 解题报告
Solution:题意是给定了两组字符串数组,其中返回按照要求的结果值。结果1要求是,数组一中的返回结果唯一,且该元素不再数组2中出现;结果2要求是,数组二中的返回结果唯一,且该元素不再数组1中出现;直接打表返回即可。
2025-02-20 00:20:29
86
原创 LeetCode --- 2210. Count Hills and Valleys in an Array 解题报告
Solution:题意是给定两个指标定义hills:nums[i - 1] < nums[i] and nums[i] > nums[i + 1]valleys:nums[i - 1] > nums[i] and nums[i] < nums[i + 1]如果满足上面任何一个,即可累加,最后返回符合条件的累加结果
2025-02-18 01:53:30
202
原创 LeetCode --- 2206. Divide Array Into Equal Pairs 解题报告
Solution:题意其实是给定一组n * 2长度的数组,判断是否可以拆分成如下多个元祖1.每个元素只属于一对。2.成对的元素是相等的。这里直接统计每个元素的数量,然后遍历判断即可
2025-02-18 01:11:25
76
原创 LeetCode --- 2200. Find All K-Distant Indices in an Array 解题报告
题意就是给定一个数组,找到这个数组中符合|i - j| <= k and nums[j] == key的下标 返回下标即可
2025-02-11 23:02:11
217
原创 LeetCode --- 2194. Cells in a Range on an Excel Sheet 解题报告
题意是给定一组坐标,通过计算列出所有中间的元素。其中数字和字符转换通过chr()和ord()转换
2025-02-10 00:12:45
198
原创 LeetCode --- 2190. Most Frequent Number Following Key In an Array 解题报告
题目其实不是很好理解,英文对中文太绕了。这里简单解读下,给定一个字符串数组nums,和一个目标数字Key,其中我们要定义几个概念:目标值:key要求在给定的数组nums中存在。然后我们要统计出了key之后的元素这里从i + 1开始,首先 i + 1 小于给定的长度,这里原本要求是 i < 0 <= i <= nums.length - 2,....
2025-02-01 14:21:23
272
原创 LeetCode --- 2185. Counting Words With a Given Prefix 解题报告
题意说道是给定一组字符串,和一个前缀字符串pref,我们判断给定数组中的字符串如果包含这个前缀的,记一个。最后看下有多少个字符串符合这个规则即可
2025-02-01 13:30:00
532
原创 LeetCode --- 1637. Widest Vertical Area Between Two Points Containing No Points 解题报告
题意是找到给定的坐标中两个宽度最大的(其实就是X轴或者横坐标距离最大的)。这里直接取出来所有点的横坐标然后进行排期,直接判断最大的距离即可。
2025-01-31 19:28:36
49
原创 LeetCode --- 2180. Count Integers With Even Digit Sum 解题报告
题意是给定一个数字num,需要统计下小于等于num的数字符合每个元素求和是偶数的。
2025-01-31 18:56:32
412
原创 LeetCode --- 2176. Count Equal and Divisible Pairs in an Array 解题报告
题意是给定一组数组,其中如果元素相同的情况下,下标还可以相乘且可以被K除情况下,统计有多少组。这里直接打表完成计算。
2025-01-30 08:51:58
378
原创 LeetCode --- 2169. Count Operations to Obtain Zero 解题报告
题意是给定两个数字,如果两个数字都大于0的话,都需要进行减法(大的减去小的),然后再进行比较依次反复。最后出现有一个小于等于0,就结束计算,最后只需要统计出一共计算了多少次即可。直接模拟打表操作。
2025-01-29 20:42:39
538
原创 LeetCode --- 2164. Sort Even and Odd Indices Independently 解题报告
You are given a 0-indexed integer array . Rearrange the values of according to the following rules:Return the array formed after rearranging the values of .Example 1:Input: nums = [4,1,2,3]Output: [2,3,4,1]Explanation: First, we sort the values presen
2025-01-09 23:59:17
279
原创 LeetCode --- 2160. Minimum Sum of Four Digit Number After Splitting Digits 解题报告
You are given a positive integer consisting of exactly four digits. Split into two new integers and by using the digits found in . Leading zeros are allowed in and , and all the digits found in must be used.Return the minimum possible sum of and .Ex
2024-11-25 01:49:55
261
原创 LeetCode --- 2154. Keep Multiplying Found Values by Two 解题报告
You are given an array of integers . You are also given an integer which is the first number that needs to be searched for in .You then do the following steps:Return the final value of .Example 1:Input: nums = [5,3,6,1,12], original = 3Output: 24Explan
2024-07-30 23:31:16
184
原创 LeetCode --- 2148. Count Elements With Strictly Smaller and Greater Elements 解题报告
Given an integer array , return the number of elements that have both a strictly smaller and a strictly greater element appear in .Example 1:Input: nums = [11,7,2,15]Output: 2Explanation: The element 7 has the element 2 strictly smaller than it and the
2024-07-18 01:58:39
3781
原创 LeetCode --- 2144. Minimum Cost of Buying Candies With Discount 解题报告
A shop is selling candies at a discount. For every two candies sold, the shop gives a third candy for free.The customer can choose any candy to take away for free as long as the cost of the chosen candy is less than or equal to the minimum cost of the two
2024-07-18 01:30:58
724
原创 LeetCode --- 2138. Divide a String Into Groups of Size k 解题报告
A string can be partitioned into groups of size using the following procedure:Note that the partition is done so that after removing the character from the last group (if it exists) and concatenating all the groups in order, the resultant string should
2024-07-16 23:15:32
9120
原创 LeetCode --- 2133. Check if Every Row and Column Contains All Numbers 解题报告
An matrix is valid if every row and every column contains all the integers from to (inclusive).Given an integer matrix , return if the matrix is valid. Otherwise, return .Example 1:Input: matrix = [[1,2,3],[3,1,2],[2,3,1]]Output: trueExplanation: I
2024-07-16 01:33:55
151
原创 LeetCode --- 2129. Capitalize the Title 解题报告
You are given a string consisting of one or more words separated by a single space, where each word consists of English letters. Capitalize the string by changing the capitalization of each word such that:Return the capitalized .Example 1:Input: title =
2024-07-16 01:17:04
1707
原创 LeetCode --- 2124. Check if All A‘s Appears Before All B‘s 解题报告
Given a string consisting of only the characters and , return if every appears before every in the string. Otherwise, return .Example 1:Input: s = "aaabbb"Output: trueExplanation:The 'a's are at indices 0, 1, and 2, while the 
2024-07-11 22:47:58
665
原创 LeetCode --- 2119. A Number After a Double Reversal 解题报告
Reversing an integer means to reverse all its digits.Given an integer , reverse to get , then reverse to get . Return if equals . Otherwise return .Example 1:Input: num = 526Output: trueExplanation: Reverse num to get 625, then reverse 625 to get 52
2024-07-10 23:25:32
405
原创 LeetCode --- 2114. Maximum Number of Words Found in Sentences 解题报告
A sentence is a list of words that are separated by a single space with no leading or trailing spaces.You are given an array of strings , where each represents a single sentence.Return the maximum number of words that appear in a single sentence.Example 1
2024-07-10 23:03:37
536
原创 LeetCode --- 2108. Find First Palindromic String in the Array 解题报告
Given an array of strings , return the first palindromic string in the array. If there is no such string, return an empty string .A string is palindromic if it reads the same forward and backward.Example 1:Input: words = ["abc","car",&
2024-07-09 00:23:27
2926
深入浅出Otter与Canal.pdf
2020-02-29
weworkapi_python-master.zip
2020-01-20
技术调研_数据质量管理&性能量化&多维分析 .pdf
2019-11-18
Cloudera Manager-V5.13 元数据库梳理.pdf
2019-10-30
基础算法-LP算法_线性规划问题.pptx
2019-10-17
基础算法-递归-杨鑫20191010.pptx
2019-10-17
基础算法 - 动态规划-2019-08-01.pptx
2019-10-17
Confluence-5.6.6-language-pack-zh_CN.jar
2018-09-30
Goods: Organizing Google’s Datasets
2018-09-06
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人