自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 收藏
  • 关注

原创 go学习笔记 控制结构:if、for、switch

if语句 i := 10 if i > 10 { fmt.Println("1") } else if i > 5 && i <= 10 { fmt.Println("3") } else { fmt.Println("2") } // if 后面加分号 if i:=6; i >10 { fmt.Println("i>10") } el

2021-01-28 21:45:26 125

原创 leetcode刷题之路-47. 全排列 II

class Solution { public List<List<Integer>> permuteUnique(int[] nums) { // 排序 Arrays.sort(nums); List<List<Integer>> res = new ArrayList<>(); int[] visited = new int[nums.length]; dfs

2021-01-06 22:59:17 91

原创 Leetcode刷题之路-12. 整数转罗马数字

https://leetcode-cn.com/problems/integer-to-roman/ public class Solution { public String intToRoman(int num) { // 把阿拉伯数字与罗马数字可能出现的所有情况和对应关系,放在两个数组中,并且按照阿拉伯数字的大小降序排列 int[] nums = {1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1};

2020-12-16 00:08:09 95

原创 Leetcode刷题之路-11. 盛最多水的容器

https://leetcode-cn.com/problems/container-with-most-water/ class Solution { public int maxArea(int[] height) { int max = 0; for(int i=0,j=height.length-1;i<j;){ int h = height[i] < height[j] ? height[i++]:height[j--];

2020-12-15 23:54:58 82

原创 Leetcode刷题之路-283.移动零

https://leetcode-cn.com/problems/move-zeroes/ class Solution { public void moveZeroes(int[] nums) { int j=0; //以为j永远记录的是 下一个非0元素要放的位置 for(int i=0;i<nums.length;++i){ if(nums[i] != 0){ nums[j] = nums[i];

2020-12-15 23:50:04 99 1

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除