自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 收藏
  • 关注

原创 LeetCode -- 2 3 4 Sum

1. Two Sum从一个array中找出Given nums = [2, 7, 11, 15], target = 9,Because nums[0] + nums[1] = 2 + 7 = 9,return [0, 1].class Solution { public int[] twoSum(int[] nums, int target) { HashM...

2019-08-31 05:18:15 91

原创 Usage of HashMap (Java)

// initialize a hashmapHashMap<Integer, Integer> map = new HashMap<>();// get the size();map.size();// add pairmap.add(1,2);// get elementget(Object key);getOrDefault(Object key, V...

2019-08-31 04:42:40 192

原创 命令行常用命令

删除非空文件夹rm -r folderName

2019-06-05 13:37:43 89

原创 pycharm 生成requirements.txt

在命令行中输入pip freeze>requirements.txt安装requirements文件中的包pip install -r requirements.txt

2019-06-05 11:13:45 7648 1

原创 tensorboard可视化的使用

在session中加入# Launch the graph in a session.sess = tf.Session()# Create a summary writer, add the 'graph' to the event file.writer = tf.summary.FileWriter(<some-directory>, sess.graph)运行完程序...

2019-06-04 11:29:29 108

空空如也

空空如也

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

TA关注的人

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