首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏SnailTyan

    Nth Digit

    1. Description 2. Solution Version 1 class Solution { public: int findNthDigit(int n) {

    56020发布于 2019-05-25
  • 来自专栏HansBug's Lab

    1653: Backward Digit Sums

    1653: [Usaco2006 Feb]Backward Digit Sums Time Limit: 5 Sec  Memory Limit: 64 MB Submit: 285  Solved: 

    61440发布于 2018-04-10
  • 来自专栏饶文津的专栏

    【UVA 1583】Digit Generator

    a加上 a的各位数=b,则b是a的digitSum,a是b的generator,现在给你digitSum,让你求它的最小的generator。

    47410发布于 2020-06-02
  • 来自专栏Reck Zhang

    LeetCode 0400 - Nth Digit

    LeetCode 0400 - Nth Digit Desicription Find the nth digit of the infinite integer sequence 1, 2, 3, 4 Example 1: Input: 3 Output: 3 Example 2: Input: 11 Output: 0 Explanation: The 11th digit of the sequence

    35020发布于 2021-08-11
  • 来自专栏yuyy.info技术专栏

    The last digit

    The last digit.cpp : 定义控制台应用程序的入口点。

    49120编辑于 2022-06-28
  • 来自专栏FreeSWITCH中文社区

    bind_digit_action

    简介 bind_digit_action是FreeSWITCH中的一个Application。和bind_meta_app很相似,但是bind_digit_action使用起来更得心应手。 可以这么说,在所有使用到bind_meta_app的场合都可以用bind_digit_action来代替。 bind_digit_action中引入了realm的概念来绑定各种按键动作,这个类似于dialplan中的context概念(在收到呼叫后,根据呼叫所在的context来分配呼叫路由)。 bind_digit_action的按键可以设置一个,也可以设置成正则表达式。 用bind_digit_action实现录音开关 利用bind_digit_action可以实现通过按键控制录音开关,下面提供配置说明,假设FreeSWITCH本地有两个用户1001和1002,在其通话的时候

    1.4K51发布于 2020-12-21
  • 【LightOJ】1122 - Digit Count(bfs)

    点击打开题目 1122 - Digit Count PDF (English) Statistics Forum Time Limit: 2 second(s) Memory Limit: 32 MB Given a set of digits S, and an integer n, you have to find how many n-digit integers are there Output For each case, print the case number and the number of valid n-digit integers in a single line

    34110编辑于 2025-08-27
  • 来自专栏Reck Zhang

    LeetCode 0233 - Number of Digit One

    Number of Digit One Desicription Given an integer n, count the total number of digit 1 appearing in all Example: Input: 13 Output: 6 Explanation: Digit 1 occurred in the following numbers: 1, 10, 11, 12,

    34220发布于 2021-08-11
  • 【POJ】3187 - Backward Digit Sums(枚举)

    Backward Digit Sums Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 5835 Accepted: 3385

    22610编辑于 2025-08-26
  • 【HDU】1061 - Rightmost Digit(快速幂)

    点击打开题目 Rightmost Digit Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java 17900 Problem Description Given a positive integer N, you should output the most right digit Output For each test case, you should output the rightmost digit of N^N. Sample Output 7 6 Hint In the first case, 3 * 3 * 3 = 27, so the rightmost digit In the second case, 4 * 4 * 4 * 4 = 256, so the rightmost digit is 6.

    23810编辑于 2025-08-27
  • 来自专栏计算机视觉与深度学习基础

    Number of Digit One

    Given an integer n, count the total number of digit 1 appearing in all non-negative integers less than For example: Given n = 13, Return 6, because digit 1 occurred in the following numbers: 1, 10, 11,

    1.1K70发布于 2018-01-12
  • 来自专栏ml

    HDUOJ1060Leftmost Digit

    Leftmost Digit Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 4430 Problem Description Given a positive integer N, you should output the leftmost digit Output For each test case, you should output the leftmost digit of N^N. Sample Input 2 3 4 Sample Output 2 2 Hint In the first case, 3 * 3 * 3 = 27, so the leftmost digit In the second case, 4 * 4 * 4 * 4 = 256, so the leftmost digit is 2.

    74080发布于 2018-03-22
  • 来自专栏Michael阿明学习之路

    Digit Recognizer 手写数字识别

    1. Baseline 读取数据 import pandas as pd train = pd.read_csv('train.csv') X_test = pd.read_csv('test.csv

    1.5K30发布于 2020-07-13
  • 来自专栏程序编程之旅

    HDOJ 1061 Rightmost Digit(循环问题)

    Problem Description Given a positive integer N, you should output the most right digit of N^N. Output For each test case, you should output the rightmost digit of N^N.

    55610发布于 2021-01-21
  • 来自专栏若尘的技术专栏

    Leetcode 题目解析之 Number of Digit One

    Given an integer n, count the total number of digit 1 appearing in all non-negative integers less than For example: Given n = 13, Return 6, because digit 1 occurred in the following numbers: 1, 10, 11, 12

    1.3K30编辑于 2022-01-15
  • 来自专栏程序编程之旅

    HDOJ 1197 Specialized Four-Digit Numbers

    Problem Description Find and list all four-digit numbers in decimal notation that have the property Output Your output is to be 2992 and all larger four-digit numbers that satisfy the requirements (in

    40510发布于 2021-01-21
  • 来自专栏月亮与二进制

    Nth Digit

    问题: Find the nth digit of the infinite integer sequence 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... Example 1: Input: 3 Output: 3 Example 2: Input: 11 Output: 0 Explanation: The 11th digit

    96520发布于 2021-11-23
  • 来自专栏Michael阿明学习之路

    Digit Recognizer 手写数字识别(神经网络)

    改进 2.1 增加训练时间 2.2 更改网络结构 Digit Recognizer 练习地址 相关博文: [Hands On ML] 3. 分类(MNIST手写数字预测) [Kaggle] Digit Recognizer 手写数字识别 1. baseline 导入包 import tensorflow as tf from tensorflow

    60121发布于 2021-02-19
  • 来自专栏HansBug's Lab

    3404: Cow Digit Game又见数字游戏

    3404: [Usaco2009 Open]Cow Digit Game又见数字游戏 Time Limit: 3 Sec  Memory Limit: 128 MB Submit: 72  Solved

    93190发布于 2018-04-11
  • 来自专栏海天一树

    Kaggle-Digit Recognizer kNN解决方案

    一、题目 https://www.kaggle.com/c/digit-recognizer 二、kNN算法 请参考https://www.jianshu.com/p/dddd1c348553 三、代码

    728100发布于 2018-04-17
领券