码迷,mamicode.com
首页 >  
搜索关键字:digits    ( 2164个结果
402. Remove K Digits
Given a non-negative integer num represented as a string, remove k digits from the number so that the new number is the smallest possible. Note: The l ...
分类:其他好文   时间:2020-03-29 11:03:55    阅读次数:74
[CF538B] Quasi Binary
[toc] Description A number is called quasibinary if its decimal representation contains only digits 0 or 1. For example, numbers 0, 1, 101, 110011 — a ...
分类:其他好文   时间:2020-03-28 20:25:08    阅读次数:93
7. Reverse Integer
Problem : Given a 32 bit signed integer, reverse digits of an integer. Example 1: Example 2: Example 3: Note: Assume we are dealing with an environmen ...
分类:其他好文   时间:2020-03-27 19:48:05    阅读次数:67
1281. 整数的各位积和之差
di地址:https://leetcode-cn.com/problems/subtract-the-product-and-sum-of-digits-of-an-integer/ <?php /** 给你一个整数 n,请你帮忙计算并返回该整数「各位数字之积」与「各位数字之和」的差。 示例 1: ...
分类:其他好文   时间:2020-03-27 12:57:16    阅读次数:174
使用python生成包含1000个随机字符的字符串,然后统计每个字符的出现次数。(使用字典)
1 # 导入random模块和string模块 2 import random 3 import string 4 5 # string.ascii_letters表示26个大小写字母 6 # string.digits表示10个阿拉伯数字 7 # string.punctuation表示标点字符 ...
分类:编程语言   时间:2020-03-20 22:27:24    阅读次数:318
LeetCode 7 Reverse Integer
题目: Given a 32-bit signed integer, reverse digits of an integer. Example 1: Input: 123 Output: 321 Example 2: Input: -123 Output: -321 Example 3: Inpu ...
分类:其他好文   时间:2020-03-18 23:36:39    阅读次数:72
17. 电话号码的字母组合
1 //DFS问题一直很难 2 class Solution 3 { 4 void dfs(string digits,vector<vector<char>>& d,vector<string> &res,int cur,string& temp) 5 { 6 if(cur == digits.s ...
分类:其他好文   时间:2020-03-15 18:47:23    阅读次数:40
[LintCode] 904. Plus One Linked List
Given a non-negative integer represented as non-empty a singly linked list of digits, plus one to the integer. You may assume the integer do not conta ...
分类:其他好文   时间:2020-03-15 13:27:25    阅读次数:48
leetcode66 Plus One
1 """ 2 Given a non-empty array of digits representing a non-negative integer, plus one to the integer. 3 The digits are stored such that the most sig ...
分类:其他好文   时间:2020-03-06 13:09:03    阅读次数:61
Python 随机生成数字,字符串,用户自动化生成数据
需要提前了解两个模块,string,random 1.关于string模块 import string print(string.punctuation) #输出为:!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~ print(string.digits) #输出为:01234567 ...
分类:编程语言   时间:2020-02-22 15:30:46    阅读次数:63
2164条   上一页 1 ... 8 9 10 11 12 ... 217 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!