自定义博客皮肤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)
  • 收藏
  • 关注

原创 hdu(C)

1000.#include<stdio.h> int main() { int a,b; while(~scanf("%d %d",&a,&b)) { printf("%d\n",a+b); } }1001.主要是理解格式,输入1输出1,输入100输出100#include<stdio.h> int main() { int a,i,j; ...

2018-05-27 23:44:10 136

原创 python报错

1.TypeError: 'range' object does not support item assignmentrange返回range对象,不是一个列表将data=range(10)改成data=list(range(10)) shuffle(data)

2018-05-23 15:49:36 108

原创 leetcode easy problems of Array

26. Remove Duplicates from Sorted ArrayConfused why the returned value is an integer but your answer is an array?Note that the input array is passed in by reference, which means modification to the in...

2018-05-01 16:30:54 124

原创 leetcode easy problems of Stack

155. Min StackDesign a stack that supports push, pop, top, and retrieving the minimum element in constant time.push(x) -- Push element x onto stack.pop() -- Removes the element on top of the stack.top...

2018-04-19 19:00:53 96

原创 leetcode easy problems

1. Two SumGiven 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 t...

2018-04-18 10:43:30 85

空空如也

空空如也

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

TA关注的人

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