码迷,mamicode.com
首页 >  
搜索关键字:integer to roman    ( 15811个结果
【每日一题】1723. 完成所有工作的最短时间
https://leetcode-cn.com/problems/find-minimum-time-to-finish-all-jobs/ 不会做,蹭个积分就走~ class Solution { /** * 最小的 工人最大用时 */ private int minId = Integer.MA ...
分类:其他好文   时间:2021-05-24 01:38:37    阅读次数:0
java冒泡排序算法
package test; public class BubbleSort { public void bubble(Integer[] array,int from,int end) { for(int k=1;k<end-from+1;k++) { for(int i=end-from;i>=k ...
分类:编程语言   时间:2021-05-24 00:31:25    阅读次数:0
Delphi UniCode转汉字(\u 格式)、汉字转UniCode(\u 格式)
Delphi UniCode转汉字(\u 格式)、汉字转UniCode(\u 格式) 1、UniCode转汉字 function UnicodeToChinese(sStr: string): string; var i: Integer; index: Integer; temp, top, la ...
分类:Windows程序   时间:2021-05-24 00:03:23    阅读次数:0
1822. Sign of the Product of an Array
There is a function signFunc(x) that returns: 1 if x is positive. -1 if x is negative. 0 if x is equal to 0. You are given an integer array nums. Let  ...
分类:其他好文   时间:2021-05-23 23:06:06    阅读次数:0
0745. Prefix and Suffix Search (H)
Prefix and Suffix Search (H) 题目 Design a special dictionary which has some words and allows you to search the words in it by a prefix and a suffix. Im ...
分类:其他好文   时间:2021-05-03 12:54:25    阅读次数:0
剑指offer-数组中的重复数组
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param numbers int整型一维数组 * @return int整型 */ public int du ...
分类:编程语言   时间:2021-05-03 12:09:56    阅读次数:0
git提交文件
1、查看修改的文件 git status 2、添加文件: git add 文件名 git add -A 一键add 3、提交文件: git commit -m "提交文件时的说明" 4、推送到远程仓库: git push ...
分类:其他好文   时间:2021-04-30 12:07:18    阅读次数:0
java 删除list中符合条件的对象(几种方法,避免入坑)
一、首先list遍历方法有那么几种:使用for循环、iterator、还有就是lambda表达式循环 1、首先创建一个测试类 class User2{ Integer id; String name; public User2(Integer id, String name) { this.id = ...
分类:编程语言   时间:2021-04-30 12:02:56    阅读次数:0
plsql ORA-01439:要更改数据类型,则要修改的列必须为空
在plsql修改ASRS_TASKDETAIL_RV 表字段GRADE 类型时遇到报错:“ORA-01439:要更改数据类型,则要修改的列必须为空”。 是因为要修改字段的新类型和原来的类型不兼容。 --1、修改原字段名name为临时字段name_new; alter table ASRS_TASKD ...
分类:数据库   时间:2021-04-29 11:47:37    阅读次数:0
创建数据库和表
在项目的配置文件 settings.py 中, INSTALLED_APPS 配置项 加入如下内容 INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'dj ...
分类:数据库   时间:2021-04-29 11:45:56    阅读次数:0
15811条   上一页 1 ... 5 6 7 8 9 ... 1582 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!