1393. 股票的资本损益 Posted on 2020-04-23 | In leetcode Words count in article: 448 | Reading time ≈ 1 题目Stocks 表: 123456789101112+---------------+---------+| Column Name | Type |+---------------+---------+| stock_name | varchar || operation ... Read more »
面试题 01.07. 旋转矩阵 Posted on 2020-04-23 | In leetcode Words count in article: 252 | Reading time ≈ 1 题目给你一幅由 N × N 矩阵表示的图像,其中每个像素的大小为 4 字节。请你设计一种算法,将图像旋转 90 度。 不占用额外内存空间能否做到? 示例 1:12345678910111213给定 matrix = [ [1,2,3], [4,5,6], [7,8,9]],原地旋转输入矩阵,使 ... Read more »
面试题 08.04. 幂集 Posted on 2020-04-23 | In leetcode Words count in article: 204 | Reading time ≈ 1 题目幂集。编写一种方法,返回某集合的所有子集。集合中不包含重复的元素。 说明:解集不能包含重复的子集。 示例 1:123456789101112输入: nums = [1,2,3] 输出:[ [3], [1], [2], [1,2,3], [1,3], [2,3], [1,2], [ ... Read more »
面试题 08.04. 幂集 Posted on 2020-04-23 | In leetcode Words count in article: 204 | Reading time ≈ 1 题目幂集。编写一种方法,返回某集合的所有子集。集合中不包含重复的元素。 说明:解集不能包含重复的子集。 示例 1:123456789101112输入: nums = [1,2,3] 输出:[ [3], [1], [2], [1,2,3], [1,3], [2,3], [1,2], [ ... Read more »
628. 三个数的最大乘积 Posted on 2020-04-23 | In leetcode Words count in article: 297 | Reading time ≈ 1 题目给定一个整型数组,在数组中找出由三个数组成的最大乘积,并输出这个乘积。 示例 1:12输入: [1,2,3]输出: 6 示例2:12输入: [1,2,3,4]输出: 24 示例3:12输入:nums = [-1,-2,-3]输出:-6 提示: 3 <= nums.length < ... Read more »
965. 单值二叉树 Posted on 2020-04-23 | In leetcode Words count in article: 215 | Reading time ≈ 1 题目如果二叉树每个节点都具有相同的值,那么该二叉树就是单值二叉树。 只有给定的树是单值二叉树时,才返回 true;否则返回 false。回文串不一定是字典当中的单词。 示例1: 12输入:[1,1,1,1,1,null,1]输出:true 示例2: 12输入:[2,2,2,5,2]输出:false ... Read more »
1294. 不同国家的天气类型 Posted on 2020-04-23 | In leetcode Words count in article: 480 | Reading time ≈ 2 题目国家表:Countries 12345678+---------------+---------+| Column Name | Type |+---------------+---------+| country_id | int || country_name | ... Read more »
equals和hashCode方法 Posted on 2020-04-21 | In Java Words count in article: 1.2k | Reading time ≈ 4 equals和hashCode方法equals和hashCode都是Object对象中的非final方法,它们设计的目的就是被用来覆盖(override)的,所以在程序设计中还是经常需要处理这两个方法的。而掌握这两个方法的覆盖准则以及它们的区别还是很必要的,相关问题也不少。 不被重写的equals和 ... Read more »
Maven如何解决包冲突 Posted on 2020-04-20 | In JVM Words count in article: 1.3k | Reading time ≈ 5 Maven如何解决包冲突Maven是一个跨平台的项目管理工具。作为Apache组织的一个颇为成功的开源项目,其主要服务于基于Java平台的项目创建,依赖管理和项目信息管理。 Maven依赖配置maven的依赖配置主要是如下格式: 12345678910111213141516171819202122 ... Read more »
SQL中的各种join Posted on 2020-04-20 | In 数据库 Words count in article: 611 | Reading time ≈ 2 SQL中的各种join在实际的数据库应用中,我们经常需要从多个数据表中读取数据,这时我们就可以使用SQL语句中的连接(JOIN),在两个或多个数据表中查询数据。 inner joininner join 被称为内连接,在使用的时候可以把inner 关键字省略,直接使用join。 它返回的是两张表中的 ... Read more »