background picture of the home page

Hello World

[383]赎金信

class Solution: def canConstruct(self, ransomNote: str, magazine: str) -> bool: if len(ransomNote) > len(magazine): return Fal

thumbnail of the cover of the post

springboot:mybatis多数据源

项目地址:https://github.com/snjl/springboot.mulidatasource.git 配置文件 数据库配置: mybatis.config-locations=classpath:mybatis/mybatis-config.xml spring.datasourc

thumbnail of the cover of the post

[540]有序数组中的单一元素

参考: 直接按顺序查找,构建一个栈 class Solution: # 由题可知,至少有三个数,所以不需要判断数组长度 def singleNonDuplicate(self, nums) -> int: p = list() if len(nums)

thumbnail of the cover of the post

mybatis实现读取树结构数据

参考: https://blog.csdn.net/u012587693/article/details/52474282 表结构 CREATE TABLE `lscrm_function_privilege` ( `id` int(10) unsigned NOT NULL AUTO_INCR

thumbnail of the cover of the post

docker push镜像

参考: https://www.cnblogs.com/jifeng/p/9410003.html 1、登录 docker login http://xxxxx.com 2、登录私有hub创建项目 例如项目叫:abc-dev 2、给镜像打tag docker tag 2e25d8496557 xxx

thumbnail of the cover of the post

wordclound词云图不清晰问题

参考: https://blog.csdn.net/qq_44976531/article/details/115353504 之前搞词云图产生的图片发现不清晰,没有深究啥原因。 wc = WordCloud( # scale=32, #保证生成的图片更加清晰 b

thumbnail of the cover of the post