- 博客(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 170
原创 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 129
原创 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 157
原创 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 131
原创 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 118
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人