自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

多肉的siri的博客

程序猿。。

  • 博客(8)
  • 收藏
  • 关注

原创 使用vagrant和coreos创建kubernetes集群

使用coreos可以一键构建kubernetes集群

2017-09-04 18:21:43 571

原创 Palindrome Number

问题Determine whether an integer is a palindrome. Do this without extra space.测试用例无我的代码func isPalindrome(x int) bool { var revertedx int revertedx = 0 if x < 0{ retu

2017-09-03 20:20:25 218

原创 Reverse Integer

问题Reverse digits of an integer.测试用例Example1: x = 123, return 321Example2: x = -123, return -321我的代码func reverse(x int) int { var y int y = 0 if x > -10

2017-09-03 19:43:33 184

原创 Longest Substring Without Repeating Characters(Time Limit Exceeded)

问题Given a string, find the length of the longest substring without repeating characters.测试用例Given "abcabcbb", the answer is "abc", which the length is 3.Given "bbbbb", the

2017-09-03 17:23:51 237

原创 Add Two Numbers

问题You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and

2017-09-02 11:16:00 184

原创 Two Sum

问题Given an array of integers, return indices of the two numbers such that they add up to a specific target.You may assume that each input would have exactly one solution, and you may not use

2017-09-02 11:08:48 224

原创 在服务器上创建虚拟机

由于服务器一般是没有显示器这种图形显示设备的,所以讲一讲如何在服务器中创建虚拟机。

2017-08-24 09:09:35 11142

原创 Minikube安装

Minikube是一个使得Kubenetes在本地运行的工具。Minikube在本地主机的虚拟机中运行一个单节点的Kubernetes。本文就如何安装Minikube作简单介绍。本文使用Ubuntu系统,因此以Linux系统安装为例。

2017-08-17 10:50:41 917 1

空空如也

空空如也

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

TA关注的人

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