Loading

上一页 1 2 3 4 5 6 ··· 16 下一页
摘要: > 题目描述太复杂, 意思就是移除数组中给定的元素 Given an integer array nums and an integer val, remove all occurrences of val in nums in-place. The order of the elements ma 阅读全文
posted @ 2023-06-14 10:12 Artwalker 阅读(6) 评论(0) 推荐(0) 编辑
摘要: **Example 1:** ``` Input: nums = [1,1,2] Output: 2, nums = [1,2,_] Explanation: Your function should return k = 2, with the first two elements of nums 阅读全文
posted @ 2023-06-13 15:39 Artwalker 阅读(5) 评论(0) 推荐(0) 编辑
摘要: Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. An input string is valid if: 阅读全文
posted @ 2023-06-13 13:36 Artwalker 阅读(3) 评论(0) 推荐(0) 编辑
摘要: Write a function to find the longest common prefix string amongst an array of strings. If there is no common prefix, return an empty string ```""```. 阅读全文
posted @ 2023-06-13 10:20 Artwalker 阅读(2) 评论(0) 推荐(0) 编辑
摘要: Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. ``` Symbol Value I 1 V 5 X 10 L 50 C 100 D 500 M 1000 ``` For examp 阅读全文
posted @ 2023-06-12 10:37 Artwalker 阅读(0) 评论(0) 推荐(0) 编辑
摘要: Given an integer x, return true if x is a palindrome, and false otherwise. **Example 1:** ``` Input: x = 121 Output: true Explanation: 121 reads as 12 阅读全文
posted @ 2023-06-12 09:58 Artwalker 阅读(1) 评论(0) 推荐(0) 编辑
摘要: # MIN返回一系列数字中最小的数字 ![img](https://img2023.cnblogs.com/blog/1994352/202306/1994352-20230611160937444-1380542574.gif) # 使用绝对引用来避免复制/粘贴时的变化 Excel中绝对引用的语法 阅读全文
posted @ 2023-06-11 18:11 Artwalker 阅读(2) 评论(0) 推荐(0) 编辑
摘要: # 如何为你的数据选择格式 ![img](https://img2023.cnblogs.com/blog/1994352/202306/1994352-20230611142035628-204372461.png) ![img](https://img2023.cnblogs.com/blog/ 阅读全文
posted @ 2023-06-11 15:11 Artwalker 阅读(3) 评论(0) 推荐(0) 编辑
摘要: # Description In this kata you will create a function that takes a list of non-negative integers and strings and returns a new list with the strings f 阅读全文
posted @ 2023-06-08 10:34 Artwalker 阅读(2) 评论(0) 推荐(0) 编辑
摘要: # 用Excel来做记录是非常棒的 # 使用公式来处理你的数据 ```xlsx =数据1+数据2+... ``` ![img](https://img2023.cnblogs.com/blog/1994352/202306/1994352-20230605175901161-59939883.gif 阅读全文
posted @ 2023-06-05 19:26 Artwalker 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 一个好实验,既能解决问题又能揭示事物的真正运行规律; 一个好实验往往能让你摆脱对观察数据的无限依赖,能帮助你理清因果联系; 可靠的实证数据将让你的分析判断更有说服力 务必使用比较法 统计与分析最基本的原理之一就是比较法,它指出,数据只有通过相互比较才会有意义。 比较是破解观察数据的法宝 比较越多,分 阅读全文
posted @ 2023-05-10 19:58 Artwalker 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 数据库 数据库是保存表和其他相关SQL结构的容器。 查询(query) 数据库由表构成。 表是在数据库中包含数据的结构,由列和行组成。 每个分类都变成表中的一列; 表的行包含了表中某个对象的所有信息; 数据库内的信息组成了表 字段(field)=列,记录(record)=行 关系型数据库管理系统(r 阅读全文
posted @ 2023-05-08 15:11 Artwalker 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 计算排位数目 如要算出n个独立对象的排名方式的确切数目,可按下式进行计算: n!=n×(n-1)x(n-2)x…×3×2×1 圆形排位 如果有个对象需要进行圆形排位,则可能的排位数目按下式进行计算: (n-1)! 按类型排位 练习: 排列 排列是指从一个较大(n个)对象群体中取出一定数目(r个)对象 阅读全文
posted @ 2023-05-07 16:03 Artwalker 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 数据分析 所有的数据分析师最终都会被打造成能作出更好决策的人才,你要学的就是在浩如烟海的数据中洞察先机,作出更好决策。 客户将帮助你确定问题 客户是分析结果的服务对象; 客户将根据你的分析作决策; 你需要尽量从他那里多了解一些信息,才能确定问题; 你的客户可能: 相当了解或不甚了解自己的数据 相当了 阅读全文
posted @ 2023-05-07 11:27 Artwalker 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 随机变量与变量 概率分布描述了一个给定变量的所有可能结果的概率; 随机变量是一个可以等于一系列数值的变量,而这一系列数值中的每一个值都与一个特定概率相关联; 在肥蛋赌场Tiger机这个例子中,随机变量代表我们将在每一局赌局中赢得的收益; 随机变量通常用大写字母表示,如X或Y; 变量能够采用的特定数值 阅读全文
posted @ 2023-05-06 10:15 Artwalker 阅读(11) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 16 下一页
Live2D