Leetcode刷题笔记1:Two Sum

    /**  * Note: The returned array must be malloced, assume caller calls free().  */ int* twoSum(int* nums, int numsSize, int target)  {     int i,j,flag=0;     int *s = (int*)malloc(2*sizeof(int));
相关文章
相关标签/搜索