码迷,mamicode.com
首页 >  
搜索关键字:integer to roman    ( 15811个结果
Delphi Function 返回值忘记默认赋值的一些问题
Delphi function 函数的返回值,也就是Result,建议直接在函数开始就做一些初始化 例如下面的代码 procedure TForm1.FormCreate(Sender: TObject); var i:Integer; str:string; begin Memo1.Lines.C ...
分类:Windows程序   时间:2021-04-12 12:12:57    阅读次数:0
冒泡排序-python
source program: list=[]while True: print("how many number input:") try: num=int(input()) for i in range(num): a=int(input("input"+str((i+1))+"integer: ...
分类:编程语言   时间:2021-04-12 11:41:22    阅读次数:0
877. Stone Game
Alex and Lee play a game with piles of stones. There are an even number of piles arranged in a row, and each pile has a positive integer number of sto ...
分类:其他好文   时间:2021-04-10 13:23:44    阅读次数:0
767 · 翻转数组
描述 原地翻转给出的数组 nums 原地意味着你不能使用额外空间 样例 样例 1: 输入 : nums = [1,2,5] 输出 : [5,2,1] class Solution: """ @param nums: a integer array @return: nothing """ def r ...
分类:编程语言   时间:2021-04-10 13:11:25    阅读次数:0
539 · 移动零
描述 给一个数组 nums 写一个函数将 0 移动到数组的最后面,非零元素保持原数组的顺序 1.必须在原数组上操作 2.最小化操作数 样例 例1: 输入: nums = [0, 1, 0, 3, 12], 输出: [1, 3, 12, 0, 0]. 例2: 输入: nums = [0, 0, 0, ...
分类:移动开发   时间:2021-04-10 13:09:55    阅读次数:0
OpenWrt创建新用户及搭建samba服务器
1.安装依赖的软件包 opkg install shadow-common opkg install shadow-useradd 2、搭建samba服务器 opkg update opkg install samba36-server opkg install luci-app-samba opk ...
分类:其他好文   时间:2021-04-10 13:08:52    阅读次数:0
2.LinkedBlockingQueue
java.util.concurrent包下的新类。 实现接口:BlockingQueue LinkedBlockingQueue就是其中之一,是一个阻塞的线程安全的队列,底层采用链表实现。 LinkedBlockingQueue构造的时候若没有指定大小,则默认大小为Integer.MAX_VALU ...
分类:数据库   时间:2021-04-09 13:20:04    阅读次数:0
python orm 多表查询
test_or.py from sqlalchemy import Table, Column, Integer,String,DATE, ForeignKey from sqlalchemy.orm import relationship from sqlalchemy.ext.declarati ...
分类:编程语言   时间:2021-04-09 12:56:13    阅读次数:0
977. Squares of a Sorted Array
Given an integer array nums sorted in non-decreasing order, return an array of the squares of each number sorted in non-decreasing order. Example 1: I ...
分类:其他好文   时间:2021-04-08 13:55:44    阅读次数:0
题目:9. 回文数
方式一(将整数转换为字符串,在转换为字符数组): public boolean isPalindrome(int x) { if (x < 0) { return false; } char[] chars = new String(Integer.toString(x)).toCharArray( ...
分类:其他好文   时间:2021-04-08 13:10:24    阅读次数:0
15811条   上一页 1 ... 7 8 9 10 11 ... 1582 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!