码迷,mamicode.com
首页 >  
搜索关键字:desc    ( 6736个结果
剑指offer58左旋字符串
# coding:utf-8 """ Name : 剑指offer58.py Author : qlb Contect : 17801044486@163.com Time : 2021/2/7 14:14 Desc: 左旋字符串 """ class Solution: def reverseLef ...
分类:其他好文   时间:2021-02-08 12:34:26    阅读次数:0
LeetCode28A是否是B的子串
恢复内容开始 # coding:utf-8 """ Name : LeetCode28.py Author : qlb Contect : 17801044486@163.com Time : 2021/2/7 17:17 Desc:实现 strStr() """ class Solution: d ...
分类:其他好文   时间:2021-02-08 12:33:47    阅读次数:0
阿里OSS上传图片不支持预览
OSS上传图片不支持预览 第一点就是设置文件的ACL(权限) 注意一点权限要么是公共读写,要么是公共读 /** * 主要运用到的就是阿里的类 ObjectMetadata */ ObjectMetadata objectMetadata = new ObjectMetadata(); //设置公共读 ...
分类:Web程序   时间:2021-02-08 12:11:54    阅读次数:0
运维权限系统之 OpenLDAP(干货)
系统环境:CentOS7 一、OpenLDAP 1,开始安装(使用yum源码安装) yum install openldap openldap-servers openldap-clients ##拷贝数据库配置文件并修改权限 cp /usr/share/openldap-servers/DB_CO ...
分类:其他好文   时间:2021-02-06 11:54:44    阅读次数:0
LeetCode242有效字母异位词
# coding:utf-8 """ Name : NO242.py Author : qlb Contect : 17801044486@163.com Time : 2021/2/5 8:08 Desc: 有效字母异位词 """ #解题思路 #有效字母异位词的条件有以下几个 #1 两个字符串长度 ...
分类:其他好文   时间:2021-02-05 10:59:52    阅读次数:0
MYSQL--慎用group_concat()
背景 因业务需要汇总数据,汇总条件较复杂,所以想汇总时获取所有汇总数据的ID,以便后续使用。 功能 将 group by 产生的同一个分组中的值连接起来,返回一个字符串结果。 语法 group_concat( [distinct] 要连接的字段 [order by 排序字段 asc/desc ] [ ...
分类:数据库   时间:2021-02-05 10:57:43    阅读次数:0
unityZXing二维码的生成与扫描
借鉴自某位大佬不记得了 using System.Collections; using System.Collections.Generic; using UnityEngine; using ZXing; using UnityEngine.UI; /// <summary> /// 二维码扫描识 ...
分类:编程语言   时间:2021-02-02 11:05:42    阅读次数:0
Mybatis--第?部分:?定义持久层框架
?定义持久层框架 分析JDBC操作问题 public static void main(String[] args) { Connection connection = null; PreparedStatement preparedStatement = null; ResultSet resul ...
分类:其他好文   时间:2021-02-01 12:43:34    阅读次数:0
Tensorflow-tensorboard展示网络结构
tensorboard展示网络结构 代码 import tensorflow as tf from tensorflow.examples.tutorials.mnist import input_data tf.compat.v1.disable_eager_execution() #载入数据集 ...
分类:其他好文   时间:2021-02-01 12:26:02    阅读次数:0
MySQL 常用操作
1.进入MySQL 运行mysql -u root -p 输入密码进入 2.查询数据库 show database; 3.切换库 use mysql 4.打开数据库里面的表 show tables; 5.查看表里的字段 desc tb_name; (因为我没有创建字段 所以不显示) 6.查看当前使用 ...
分类:数据库   时间:2021-01-28 11:57:11    阅读次数:0
6736条   上一页 1 ... 7 8 9 10 11 ... 674 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!