Design a Snake game that is played on a device with screen size = width x height. Play the game online …
分类:LeetCode
657. Judge Route Circle
题目地址:https://leetcode.com/problems/judge-route-circle/description/ 大意:The valid robot moves are R (Right), L (…
[剑指offer] 表示数值的字符串
本文首发于我的个人博客:尾尾部落 题目描述 请实现一个函数用来判断字符串是否表示数值(包括整数和小数)。例如,字符串”+100″,”5e2″,”-123R…
java-字符串压缩
题目: 将字符串 aaabcdda (可以从控制台接收)编程实现将其转换为 3a1b1c2d1a。 算法思想: 遍历一遍字符串,力求时间复杂度为O(n),可用空间换时间。 代码实现: Scanner s = new Sc…
LeetCode算法题-Count Primes(Java实现)
这是悦乐书的第190次更新,第193篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第49题(顺位题号是204)。计算小于非负数n的素数的数量。例如: 输入:10 输出:4 说明:有4个素数小…
算法(2)KMP算法
1.0 问题描述 实现KMP算法查找字符串。 2.0 问题分析 “KMP算法”是对字符串查找“简单算法”的优化。 字符串查找“简单算法”是源字符串每个字符分别使用匹配串进行匹配,一旦失配,模式串下标归0,源字符串下标加1…
Leetcode - Additive Number
My code: import java.math.BigInteger; public class Solution { public boolean isAdditiveNumber(String num) { in…
168. Excel Sheet Column Title
168- Excel Sheet Column Title My Submissions Question Editorial Solution Total Accepted: 64257 Total Submissio…
[LeetCode By Go 19]520. Detect Capital
写了这么多题,感觉用go写真方便,可以直接对解题的函数进行测试,测试代码写起来也好方便,多个测试用例很方便就放在一起,简单明了。 题目 Given a word, you need to judge whether th…
[LeetCode] Binary Tree Vertical Order Traversal 二叉树的竖直遍历
Given a binary tree, return the vertical order traversal of its nodes’ values. (ie, from top to b…
[LeetCode] Split Array Largest Sum 分割数组的最大值
Given an array which consists of non-negative integers and an integer m, you can split the array i…
11. 排序
56. Merge Intervals Given a collection of intervals, merge all overlapping intervals. For example, Given [1,3]…