那可是露露
那可是露露
全部文章
分类
Data_Structures_and_Algorithm(8)
Hadoop_And_Spark(2)
Java(2)
LeetCode_And_SwordOffer(3)
Linux(2)
Python(8)
Scala(2)
TensorFlow(1)
ToolBox(5)
未归档(1)
沉舟侧畔千帆过(1)
面试(1)
归档
标签
去牛客网
登录
/
注册
那可是露露的博客
全部文章
(共36篇)
Anything to Learn
1: java、scala、python、sql 2:mysql、linux、hadoop、hive、spark、tensorflow 3:meachine learning、data mining、deep learning、data structures and algorithms 4:...
plans
2018-07-23
0
441
LeetCode - 07: Reverse Integer
class Solution { public int reverse(int x) { long result = 0; for(; x != 0; x /= 10) { result = result * 10 + x % 10; ...
2018-07-23
0
427
LeetCode -09: Palindrome Number
class Solution { public boolean isPalindrome(int x) { // if (x < 0) return false; // int tempX = x; // int reverse = 0; // while (tempX > 0...
2018-07-23
0
462
LeetCode -13: Roman to Integer
class Solution { public int romanToInt(String s) { Map<Character, Integer> map = new HashMap<>(); map.put('I', 1); ...
leetcode
java
2018-07-23
0
501
Navicat for Mysql 连接报错1251 问题解决!
Mysql 8.0 Navicat for Mysql 在连接mysql 的时候报错,出现1251以下问题,我的是Mysql8.0版本 解决方法: 命令行模式下进入mysql mysql -uroot -p 输入: use mysql; 再输入: A...
2018-06-05
0
434
Win10下成功配置TensorFlow-GPU [Windows10+Anaconda3(4.2)+Python3.5+Tensorflow1.4+Cuda8.0+cudnn6.0](附百度云资源)
Win10下配置TensorFlow-GPU 环境: Win10 Anaconda3(4.2)、Pyhon3.5、tensorflow-gpu1.4 Cuda8.0、cudnn6.0 首先是需要的一些软件包,包括cuda、anaconda、cudnn等,我直接放在了百度云,方便各...
2018-05-01
0
734
Git 学习整理
Git 学习整理 一、Git安装 1、Linux安装Git 直接在终端中输入命令即可安装 $ sudo apt-get install git 2、Windows安装Git Windows下安装Git,先从Git官网下载安装包,然后按默认选项安装即可。 安装成功后,右键及开始菜...
2018-04-30
0
492
LeetCode - 35: Search Insert Position
35、Search Insert Position Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would b...
2018-04-30
0
487
LeetCode - 27: Remove Element
27、Remove Element Given an array nums and a value val, remove all instances of that value in-place and return the new length. Do not allocate extra ...
2018-04-30
0
479
我在少林寺藏经阁刷LeetCode !!(LeetCode目录)
My_LeetCode 刷题顺序:Easy --> Medium --> Hard 按Tags进行分组练习 Easy 1、Two Sum 7、Reverse Integer 9、Palindrome Number 13、Roman to Integer 26、...
2018-04-28
0
494
首页
上一页
1
2
3
4
下一页
末页