码迷,mamicode.com
首页 >  
搜索关键字:ss    ( 3412个结果
字符串消除空格
输入一个字符串,将这个字符串中所有的空格删除 输入格式: 输入一个字符串 输出格式: 输出删除空格后的字符串 输入样例: i am a boy! you are a girl! 输出样例: iamaboy!youareagirl! ss=input() ss=ss.replace(' ', '') ...
分类:其他好文   时间:2020-02-20 10:20:42    阅读次数:127
Linux date命令详细说明
date 命令总结 用法:date [选项]... [+格式]或:date [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]] 以给定的格式显示当前时间,或是设置系统日期。 -d,--date=字符串 显示指定字符串所描述的时间,而非当前时间 -f,--fi ...
分类:系统相关   时间:2020-02-19 11:36:01    阅读次数:110
java获取时间
今天碰到个问题,需求是查询近一年、近半年、本月的数据,数据库中的时间类型是dateTime类型也就是(''yyyy-MM-dd HH:mm:ss ) 但我传入的类型为yyyy-MM 然后查不出数据,看了下java8 api文档 后使用了LocalDateTime这个类来操作。 近一年和近半年获取方法 ...
分类:编程语言   时间:2020-02-18 18:08:23    阅读次数:62
Error: A JNI error has occurred, please check your installation and try again
ss java.lang.NoClassDefFoundError: org/apache/spark/api/java/function/Function2 at java.lang.Class.getDeclaredMethods0(Native Method) at java.lang.Cla ...
分类:其他好文   时间:2020-02-18 15:05:25    阅读次数:78
学习日记(2.15---2.16)
1.数据标准化 数据标准化就是把数据的特征减去关于的这个特征的平均值再除以这个特征的方差,效果是把数据都变成0附近的一些数值,方便计算,同时保存特征。 from sklearn.preprocessing import StandardScaler ss=StandardScaler() x=ss. ...
分类:其他好文   时间:2020-02-17 00:50:18    阅读次数:96
Codeforces Round #619 (Div. 2) Ayoub's function
Ayoub thinks that he is a very smart person, so he created a function f(s)f(s) , where ss is a binary string (a string which contains only symbols "0" ...
分类:其他好文   时间:2020-02-15 15:06:58    阅读次数:55
Oracle修改系统显示日期的格式
alter session set nls_date_format = 'YYYY-MM-DD HH24:MI:SS'; ...
分类:数据库   时间:2020-02-14 18:21:49    阅读次数:78
Pediy CTF 2018 reverse
``` 00401057 |. /0F87 B0000000 |ja 18a51cbc.0040110D 0040105D |. |33DB |xor ebx,ebx ; 清空ebx 0040105F |> |8A441C 14 |/mov al,byte ptr ss:[esp+ebx+0x14]... ...
分类:其他好文   时间:2020-02-14 14:29:15    阅读次数:72
Educational Codeforces Round 82 A. Erasing Zeroes
You are given a string ss. Each character is either 0 or 1. You want all 1's in the string to form a contiguous subsegment. For example, if the string ...
分类:其他好文   时间:2020-02-13 13:12:48    阅读次数:61
python set enum 完整性约束
# create table biao ( id int,gender enum('ss','ssd')); 只能添加ss和ssd,填写其他添加不进去 # create table biao1 ( id int,hobby set ('a','b','c')); # insert into biao ...
分类:编程语言   时间:2020-02-12 19:01:38    阅读次数:82
3412条   上一页 1 ... 22 23 24 25 26 ... 342 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!