自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

wlwlomo的博客

种下梧桐树,引得凤凰来!

  • 博客(11)
  • 资源 (2)
  • 收藏
  • 关注

原创 Windows安装pytorch,傻瓜式教程

Windows安装pytorch,傻瓜式教程欢迎使用Markdown编辑器1.下载离线功能快捷键合理的创建标题,有助于目录的生成如何改变文本的样式插入链接与图片如何插入一段漂亮的代码片生成一个适合你的列表创建一个表格设定内容居中、居左、居右SmartyPants创建一个自定义列表如何创建一个注脚注释也是必不可少的KaTeX数学公式新的甘特图功能,丰富你的文章UML 图表FLowchart流程图导出与导入导出导入欢迎使用Markdown编辑器你好! 这是你第一次使用 Markdown编辑器 所展示的欢迎页

2021-08-17 00:19:05 190

原创 这才是高效判断素数的正确打开方式

这才是高效判断素数的正确打开方式什么是素数问题代码什么是素数素数也被称为质数,定义为在大于1的自然数中bai,除了1和它本身以外不再有其他因数。问题统计所有小于非负整数 n 的质数的数量。代码class Solution { int countPrimes(int n) { boolean[] isPrim = new boolean[n];//数组默认为false for (int i = 2; i * i < n; i++)

2020-10-30 17:52:09 106

原创 我所认识的java栈和堆

我所认识的java栈和堆先说一下为什么写这边博客堆和栈是什么?从哪儿来的?栈和堆是用来干什么的?我俩有啥不一样呢?(堆和栈的区别)先说一下为什么写这边博客今天面试了贝壳找房,问了一些java虚拟机的东西,自己虽然知道,但是无法系统的说出来,这也是一个很大的问题。所以,结果自然凉凉。其中,问到了JVM中的栈和堆,自己也是东一榔锤,西一棒子的说出来,不够系统。所以特写此博客来说一下JVM,如有不...

2019-09-01 00:57:11 290

原创 LeetCode:Merge Two Sorted Lists

题目:Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.Example:Input: 1->2->4, 1->3->4Output: 1...

2019-04-14 02:01:32 159

原创 LeetCode:Longest Common Prefix

Write a function to find the longest common prefix string amongst an array of strings.If there is no common prefix, return an empty string “”.Example 1:Input: [“flower”,“flow”,“flight”]Output: “fl...

2019-04-09 01:47:11 113

原创 LeetCode:String to Integer (atoi)

Implement atoi which converts a string to an integer.The function first discards as many whitespace characters as necessary until the first non-whitespace character is found. Then, starting from this...

2019-04-08 01:20:42 144

原创 LeetCode:Roman to Integer

Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M.Symbol ValueI 1V 5X 10L 50C 100D 5...

2019-04-07 02:16:37 124

原创 Palindrome Number 判断是否为回文数

Palindrome Number 判断是否为回文数问题描述解答思路问题描述Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward.Example 1:Input:121Output:trueExample 2:...

2019-04-03 01:43:58 427

原创 python3中 UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte

前一天程序运行的好好的,第二天重新运行程序就出现了这样的问题:网上的解决方案都说是在打开文件时将‘r’改为‘rb’:如:将csvfile = open(file_name,encoding='utf-8') 改为csvfile = open(file_name,'rb')但是这样会造成其他的问题:python 3.5: TypeError: a bytes-like object is r...

2019-02-28 12:12:39 6884 2

原创 彻底解决“Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA”警告

问题描述在使用TensorFlow时,总是提醒“Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA”解决办法网上有很多说在python代码中添加:os.environ[“TF_CPP_MIN_LOG_LEVEL”]=‘2’ # 只显示 warning 和 ...

2018-09-21 19:26:21 17223 8

原创 Ubuntu环境Python3下“”import matplotlib“”失败,提示"No module named _tkinter"的问题

环境Ubuntu18.04python 3.6.5问题截图在import matplotlib时,出现问题:No module named _tkinter ![在这里插入图片描述](https://img-blog.csdn.net/20180919162030847?watermark/2/text/aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dsd2xvbW8=...

2018-09-19 16:31:12 1193

新疆各地区的经纬度统计汇总

新疆各地区的经纬度统计汇总,最新,最全,因为自己之前的需求而统计使用,现分享大家。

2019-04-17

基于知识的自然语言问答发展综述

自己写的有关知识驱动方面的自然语言问答发展综述,绝对原创!!! 字数3511字,5页内容,排版完毕。

2018-09-19

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除