
每日一题
Wesson96
这个作者很懒,什么都没留下…
展开
-
HW(OD)岗面试题
把题目中的稀世珍品 换成 股票的概念就很好理解了,你若知道明天会涨,哪今天买入,明天卖出。明天的时候,你若知道后天会涨,则明天也买入,后台卖出…依次类推,必然获得最大收益/** * HW二面 面试官 出的题目 */public class MainTest { // 假设你是一名古董商人,近期市场上出现了一件稀世珍品, /** * * 一只股票,你能预知它今后N天每一天的市场价格(给定一个数组,下标为第i天,值为第i天价格), * 你希望通过买卖来赚取利原创 2022-05-29 11:53:27 · 1021 阅读 · 0 评论 -
leetcode-题解-盛最多水的容器(数学 证明 双指针法)
题目:https://leetcode-cn.com/problems/container-with-most-water/给你 n 个非负整数 a1,a2,…,an,每个数代表坐标中的一个点 (i, ai) 。在坐标内画 n 条垂直线,垂直线 i 的两个端点分别为 (i, ai) 和 (i, 0) 。找出其中的两条线,使得它们与 x 轴共同构成的容器可以容纳最多的水。来源:力扣(LeetCode)链接:https://leetcode-cn.com/problems/container-with原创 2021-04-30 10:24:53 · 275 阅读 · 0 评论 -
leetcode刷题-阶乘后的零
题目给定一个整数 n,返回 n! 结果尾数中零的数量。示例 1:输入: 3输出: 0解释: 3! = 6, 尾数中没有零。示例 2:输入: 5输出: 1解释: 5! = 120, 尾数中有 1 个零.说明: 你算法的时间复杂度应为 O(log n) 。来源:力扣(LeetCode)链接:https://leetcode-cn.com/problems/factorial-trailing-zeroes著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。题解分析原创 2021-02-03 10:51:50 · 143 阅读 · 0 评论 -
Leetcode刷题-69. x 的平方根
题目实现 int sqrt(int x) 函数。计算并返回 x 的平方根,其中 x 是非负整数。由于返回类型是整数,结果只保留整数的部分,小数部分将被舍去。备注来源:力扣(LeetCode)链接:https://leetcode-cn.com/problems/sqrtx著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。解法1一步步往前,效率并不高class Solution { public int mySqrt(int x) { if (x &l原创 2021-01-29 15:10:21 · 136 阅读 · 0 评论 -
leetcode刷题-第 225 场周赛
leetcode刷题-第 225 场周赛1.替换隐藏数字得到的最晚时间备注代码2.满足三条件之一需改变的最少字符数备注代码3.找出第 K 大的异或坐标值备注代码4.备注代码总结1.替换隐藏数字得到的最晚时间备注题目:给你一个字符串 time ,格式为 hh:mm(小时:分钟),其中某几位数字被隐藏(用 ? 表示)。来源:力扣(LeetCode)链接:https://leetcode-cn.com/problems/latest-time-by-replacing-hidden-digits/sub原创 2021-01-24 20:32:16 · 256 阅读 · 1 评论 -
leetcode刷题-Count and Say
题目地址:https://leetcode-cn.com/problems/count-and-say/描述:The count-and-say sequence is a sequence of digit strings defined by the recursive formula:countAndSay(1) = “1”countAndSay(n) is the way you would “say” the digit string from countAndSay(n-1), whic原创 2021-01-20 19:08:49 · 150 阅读 · 1 评论 -
Leetcode刷题-Valid Parentheses
题目地址:https://leetcode-cn.com/problems/valid-parentheses/描述:Given a string s containing just the characters ‘(’, ‘)’, ‘{’, ‘}’, ‘[’ and ‘]’, determine if the input string is valid.An input string is valid if:Open brackets must be closed by the same type原创 2021-01-20 12:20:15 · 195 阅读 · 0 评论 -
Leetcode刷题-Remove Element
题目https://leetcode-cn.com/problems/remove-element/Given an array nums and a value val, remove all instances of that value in-place and return the new length.Do not allocate extra space for another array, you must do this by modifying the input array in-原创 2021-01-20 11:14:36 · 121 阅读 · 0 评论 -
Leetcode刷题-Longest Common Prefix
题目地址:https://leetcode-cn.com/problems/longest-common-prefix/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 “”.代码class Solution { public String longestCommo原创 2021-01-20 10:50:36 · 208 阅读 · 0 评论 -
Leetcode刷题-罗马数字转整数
题目https://leetcode-cn.com/problems/roman-to-integer/代码class Solution { public int romanToInt(String s) { char[] arr = s.toCharArray(); int pre = 0; int result = 0; for (int i = 0; i < arr.length; i++) {原创 2021-01-20 10:19:48 · 116 阅读 · 0 评论 -
LeetCode(1)-无重复字符的最长子串
LeetCode1-无重复字符的最长子串题目连接:题目示例代码题目连接:https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/题目给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。示例示例 1:输入: “abcabcbb”输出: 3解释: 因为无重复字符的最长子...原创 2019-11-25 09:17:17 · 138 阅读 · 0 评论 -
每天一题(8)-计算器的新功能
每天一题-计算器的新功能题目代码题目https://exercise.acmcoder.com/online/online_judge_ques?ques_id=1684&konwledgeId=134代码原创 2019-08-06 16:33:03 · 352 阅读 · 0 评论 -
每天一题(7)-分苹果
每天一题-分苹果题目代码题目代码原创 2019-08-06 15:26:27 · 357 阅读 · 0 评论 -
每天一题(5)-击鼓传花
题目代码关键:两个人的情况、及利用对称性;import java.util.Scanner;/** * 题目描述:https://exercise.acmcoder.com/online/online_judge_ques?ques_id=719&konwledgeId=134 * * 学校联欢晚会的时候,为了使每一个同学都能参与进来,主持人常常会带着同学们玩击鼓传花的游...原创 2019-07-28 01:37:35 · 707 阅读 · 0 评论 -
每天一题(2)-finally中return
package com.ydfind.daily;/** * 输出结果是 * A 10 * B 32 * C 33----- * D 35 */public class TryFinally { public static void main(String args[]){ int num = 10; System.out.println(...原创 2019-07-23 09:12:50 · 347 阅读 · 0 评论 -
每天一题(1)-股神
@TOC题目描述有股神吗?有,小赛就是!经过严密的计算,小赛买了一支股票,他知道从他买股票的那天开始,股票会有以下变化:第一天不变,以后涨一天,跌一天,涨两天,跌一天,涨三天,跌一天…依此类推。为方便计算,假设每次涨和跌皆为1,股票初始单价也为1,请计算买股票的第n天每股股票值多少钱?样例代码import java.util.Scanner;public class Main ...原创 2019-07-22 14:00:26 · 145 阅读 · 0 评论 -
每天一题(4)-路灯
题目代码示例原创 2019-07-25 09:31:06 · 409 阅读 · 0 评论 -
每天一题(6)-小赛的升级之路
每天一题-小赛的升级之路题目代码题目代码原创 2019-07-29 13:33:10 · 178 阅读 · 0 评论 -
每天一题(3)-翻转数组
题目代码示例原创 2019-07-24 09:22:28 · 214 阅读 · 0 评论