# 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
恢复内容开始 # 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上传图片不支持预览 第一点就是设置文件的ACL(权限) 注意一点权限要么是公共读写,要么是公共读 /** * 主要运用到的就是阿里的类 ObjectMetadata */ ObjectMetadata objectMetadata = new ObjectMetadata(); //设置公共读 ...
分类:
Web程序 时间:
2021-02-08 12:11:54
阅读次数:
0
系统环境: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
# 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
背景 因业务需要汇总数据,汇总条件较复杂,所以想汇总时获取所有汇总数据的ID,以便后续使用。 功能 将 group by 产生的同一个分组中的值连接起来,返回一个字符串结果。 语法 group_concat( [distinct] 要连接的字段 [order by 排序字段 asc/desc ] [ ...
分类:
数据库 时间:
2021-02-05 10:57:43
阅读次数:
0
借鉴自某位大佬不记得了 using System.Collections; using System.Collections.Generic; using UnityEngine; using ZXing; using UnityEngine.UI; /// <summary> /// 二维码扫描识 ...
分类:
编程语言 时间:
2021-02-02 11:05:42
阅读次数:
0
?定义持久层框架 分析JDBC操作问题 public static void main(String[] args) { Connection connection = null; PreparedStatement preparedStatement = null; ResultSet resul ...
分类:
其他好文 时间:
2021-02-01 12:43:34
阅读次数:
0
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
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