1 #!/usr/bin/env python 2 # Author: Andy Song 3 # date: 2020/6/25 4 # 占位符: %s: string, %d: digit, %f: float 5 6 name = input("Your Name Is: ") 7 gende ...
分类:
编程语言 时间:
2020-06-26 01:37:49
阅读次数:
93
description Given a positive integer N, return the number of positive integers less than or equal to N that have at least 1 repeated digit. Example In ...
分类:
其他好文 时间:
2020-06-25 14:09:06
阅读次数:
65
本题要求实现一个统计整数中指定数字的个数的简单函数。 函数接口定义: int CountDigit( int number, int digit ); 其中number是不超过长整型的整数,digit为[0, 9]区间内的整数。函数CountDigit应返回number中digit出现的次数。 裁判 ...
分类:
其他好文 时间:
2020-06-24 16:17:06
阅读次数:
47
<?php #基数排序,此处仅对正整数进行排序,至于负数和浮点数,需要用到补码,各位有兴趣自行研究 #计数排序 #@param $arr 待排序数组 #@param $digit_num 根据第几位数进行排序 function counting_sort(&$arr, $digit_num = fa ...
分类:
编程语言 时间:
2020-06-16 23:31:04
阅读次数:
80
descption We have a sorted set of digits D, a non-empty subset of {'1','2','3','4','5','6','7','8','9'}. (Note that '0' is not included.) Now, we writ ...
分类:
其他好文 时间:
2020-06-13 17:10:49
阅读次数:
64
1.简述人工智能、机器学习和深度学习三者的联系与区别。 2. 全连接神经网络与卷积神经网络的联系与区别。 3.理解卷积计算。 以digit0为例,进行手工演算。 from sklearn.datasets import load_digits #小数据集8*8 digits = load_digit ...
分类:
其他好文 时间:
2020-06-06 18:35:50
阅读次数:
58
public static string GetNumericFormat(double value, int digit = 2, int percent = 1) { System.Globalization.NumberFormatInfo provider = new System.Glob ...
分类:
其他好文 时间:
2020-06-05 00:41:49
阅读次数:
70
下面是我自己写的脚本: #!/bin/bash # author TommyWang # website http://dynmi.top fast_ip=`nslookup github.global.ssl.fastly.Net|egrep '[[:digit:]]{1,3}\.[[:digit ...
分类:
系统相关 时间:
2020-06-04 13:42:21
阅读次数:
139
1.简述人工智能、机器学习和深度学习三者的联系与区别。 2. 全连接神经网络与卷积神经网络的联系与区别。 3.理解卷积计算。 以digit0为例,进行手工演算。 from sklearn.datasets import load_digits #小数据集8*8 digits = load_digit ...
分类:
其他好文 时间:
2020-06-04 10:29:43
阅读次数:
65
题目如下: You are given an integer num. You will apply the following steps exactly two times: Pick a digit x (0 <= x <= 9). Pick another digit y (0 <= y < ...
分类:
其他好文 时间:
2020-06-03 23:33:43
阅读次数:
70