摘要: https://leetcode-cn.com/problems/design-hashset/ 无脑操作: class MyHashSet { private List<Integer> a = new ArrayList<>(); public MyHashSet() { } public vo 阅读全文
posted @ 2022-04-04 15:42 v大喵 阅读(19) 评论(0) 推荐(0) 编辑
摘要: https://leetcode-cn.com/problems/design-circular-queue/ 请原谅我直接,这一题。。。我这么傻心里都嘀咕,怎么出得那么傻~没有灵魂得题目。 class MyCircularQueue { List<Integer> queue = new Arra 阅读全文
posted @ 2022-04-04 02:35 v大喵 阅读(20) 评论(0) 推荐(0) 编辑
摘要: https://leetcode-cn.com/problems/add-binary/ 抄来的,别人家的解决方案: class Solution { public String addBinary(String a, String b) { if(a == null || a.length() = 阅读全文
posted @ 2022-04-04 01:51 v大喵 阅读(21) 评论(0) 推荐(0) 编辑
摘要: https://leetcode-cn.com/problems/pascals-triangle/ 对,没有灵魂的代码: class Solution { public List<List<Integer>> generate(int numRows) { List<List<Integer>> 阅读全文
posted @ 2022-04-04 01:48 v大喵 阅读(24) 评论(0) 推荐(0) 编辑
摘要: https://leetcode-cn.com/problems/find-pivot-index/submissions/ 没有灵魂的低端程序狗: class Solution { public int pivotIndex(int[] nums) { if(nums.length == 1) { 阅读全文
posted @ 2022-04-04 01:23 v大喵 阅读(15) 评论(0) 推荐(0) 编辑
摘要: https://leetcode-cn.com/problems/implement-strstr/ 能不动脑子为什么要折腾呢? class Solution { public int strStr(String haystack, String needle) { if(needle.length 阅读全文
posted @ 2022-04-03 15:27 v大喵 阅读(11) 评论(0) 推荐(0) 编辑
摘要: https://leetcode-cn.com/problems/longest-common-prefix/ 请原谅我就是个只会暴力计算的低端程序狗: class Solution { public static List<String> getPrefixtring(String str) { 阅读全文
posted @ 2022-04-03 15:13 v大喵 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 别人家的题目: 给定的任意长度的三条边a,b,c能够组成三角形的基本条件是: a + b > c && a + c > b && b + c > a。反之若不能组成三角形则至少有 a+b <= c || a + c <= b || b + c <= a。 即当给定的玻璃条长度为L,同时若存在a >= 阅读全文
posted @ 2019-07-10 15:32 v大喵 阅读(401) 评论(0) 推荐(0) 编辑
摘要: 系统:windows 10 postgresql 版本:postgresql-10.9-2-windows-x64 postgis 版本: postgis-bundle-pg10x64-setup-2.5.2-1 出现标题提示的结果:Postgresql没有安装完全,如果强行确认安装成功,数据库即存 阅读全文
posted @ 2019-07-06 15:24 v大喵 阅读(11181) 评论(2) 推荐(0) 编辑