网站首页 站内搜索

搜索结果

查询Tags标签: digits,共有 47条记录
  • PAT Advanced 1027 Colors in Mars(20)

    题目描述: People in Mars represent the colors in their computers in a similar way as the Earth people. That is, a color is represented by a 6-digit number, where the first 2 digits are for Red, the middle 2 digits for Green, and the last 2 digits for…

    2022/8/21 6:56:34 人评论 次浏览
  • 17. 电话号码的字母组合

    17. 电话号码的字母组合给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合。答案可以按 任意顺序 返回。 给出数字到字母的映射如下(与电话按键相同)。注意 1 不对应任何字母。 示例 1: 输入:digits = "23" 输出:["ad","ae&quo…

    2022/8/4 6:24:21 人评论 次浏览
  • LeetCode 738. Monotone Increasing Digits

    LeetCode 738. Monotone Increasing Digits (单调递增的数字) 题目 链接 https://leetcode.cn/problems/monotone-increasing-digits/ 问题描述 当且仅当每个相邻位数上的数字 x 和 y 满足 x <= y 时,我们称这个整数是单调递增的。 给定一个整数 n ,返回 小于或等于 …

    2022/6/28 23:27:02 人评论 次浏览
  • 力扣算法JS LC [17. 电话号码的字母组合] LC [93. 复原 IP 地址]

    ​ LC 17. 电话号码的字母组合 给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合。答案可以按 任意顺序 返回。 给出数字到字母的映射如下(与电话按键相同)。注意 1 不对应任何字母。​ 编辑 示例 1: 输入:digits = "23" 输出:["ad"…

    2022/6/20 5:20:22 人评论 次浏览
  • [LeetCode] 1295. Find Numbers with Even Number of Digits 统计位数为偶数的数字

    Given an array nums of integers, return how many of them contain an even number of digits. Example 1: Input: nums = [12,345,2,6,7896] Output: 2 Explanation: 12 contains 2 digits (even number of digits). 345 contains 3 digits (odd number of digits). …

    2022/4/24 6:13:55 人评论 次浏览
  • [LeetCode] 1291. Sequential Digits 顺次数

    An integer has sequential digits if and only if each digit in the number is one more than the previous digit. Return a sorted list of all the integers in the range [low, high] inclusive that have sequential digits. Example 1: Input: low = 100, high = …

    2022/4/4 23:49:04 人评论 次浏览
  • 66. Plus One

    My first solution:class Solution {public int[] plusOne(int[] digits) {int n = digits.length;int carry = 1;for(int i=n-1;i>=0;i--){int digit = digits[i];int sum = digit+carry;if(sum/10==0){digits[i]=sum;return digits;}else{digits[i]=sum%10;carry = s…

    2022/3/31 6:19:30 人评论 次浏览
  • LeetCode系列之 (JavaScript) => 66. 加一

    题目描述:解题思路分析: 模拟十进制; 分析有几种情况,按情况来定不同解法:/*** @param {number[]} digits* @return {number[]}*/ // var plusOne = function(digits) {var n = digits.length;var count = n-1;while(count >= 0){digits[count] += 1;if(digits[cou…

    2022/3/2 17:16:38 人评论 次浏览
  • (每日一练java)加一

    加一 给定一个由 整数 组成的 非空 数组所表示的非负整数,在该数的基础上加一。 最高位数字存放在数组的首位, 数组中每个元素只存储单个数字。 你可以假设除了整数 0 之外,这个整数不会以零开头。示例 1: 输入:digits = [1,2,3] 输出:[1,2,4] 解释:输入数组表示数…

    2022/2/20 17:27:06 人评论 次浏览
  • 2022.02.06 DAY3

    前言 今天家里亲戚吃饭三桌饭好忙啊啊啊,累死了,在家里都走了1.5w步,然后碰了点Django框架,准备在放假前把那个三创赛基础搞出来,就是后台连接一个数据库就好了。 题目 leetcode 17. 电话号码的字母组合 题目 电话号码的字母组合 思路 其实就是一个暴力的dfs,直接O(…

    2022/2/6 23:44:10 人评论 次浏览
  • leetcode17. 电话号码的字母组合

    一:题目二:思路 1.分析题意这个我们输入的数字字符串,每个数字代表的是一个字符串,我们就可以将其设置为一层需要 遍历的字符串,所以我们就可以知道,我们遍历出的每个字符组合的长度等于(我们输入的数字字符串 的大小) 我们需要定义一个字符串数组 const string mp[10…

    2022/2/3 23:49:00 人评论 次浏览
  • 【透过算法了解编程】之加一

    Hello,大家晚上好,我是猿码。夜深人静宿自宽,不写博客枉疯癫! 今天为大家带来的是一道 super easy 的算法题,由于它不涉及到分治(Divide and Conquer)、动态规划(DP)、递归(Recursive call)以及二分(Binary search)等算法,因此算不上经典,但作为了解 JVM 的…

    2022/1/17 1:04:03 人评论 次浏览
  • 【透过算法了解编程】之加一

    Hello,大家晚上好,我是猿码。夜深人静宿自宽,不写博客枉疯癫! 今天为大家带来的是一道 super easy 的算法题,由于它不涉及到分治(Divide and Conquer)、动态规划(DP)、递归(Recursive call)以及二分(Binary search)等算法,因此算不上经典,但作为了解 JVM 的…

    2022/1/17 1:04:03 人评论 次浏览
  • 028-Python入门(练习题)

    """ 问题1:编写一个程序,接受一行序列作为输入,并在将句子中的所有字符大写后打印行。 假设向程序提供以下输入: Hello jch Practice makes perfect 则输出为: HELLO JCH PRACTICE MAKES PERFECT """lines = [] print(请输入您想要转换的…

    2021/12/14 22:18:15 人评论 次浏览
  • 028-Python入门(练习题)

    """ 问题1:编写一个程序,接受一行序列作为输入,并在将句子中的所有字符大写后打印行。 假设向程序提供以下输入: Hello jch Practice makes perfect 则输出为: HELLO JCH PRACTICE MAKES PERFECT """lines = [] print(请输入您想要转换的…

    2021/12/14 22:18:15 人评论 次浏览
共47记录«上一页1234下一页»
扫一扫关注最新编程教程