我的解法:
c:
/**
* note: the returned array must be malloced, assume caller calls free().
首先搞清楚函式中的形參的意思:
int* nums表示傳進去乙個陣列的位址;
int numssize表示傳進去的陣列大小;
int target表示陣列中兩數相加需要等於的值;
int* returnsize表示返回的陣列的大小。
*/int
*twosum
(int
* nums,
int numssize,
int target,
int* returnsize)}}
*returnsize =0;
return0;
}
python
class
solution
(object):
deftwosum
(self, nums, target)
:"""
:type nums: list[int]
:type target: int
:rtype: list[int]
"""
n =len(nums)
for i in
range
(n):
#長度for j in
range
(i +
1, n)
:if nums[i]
+ nums[j]
== target:
return
[i, j]
return
力扣刷題記錄 陣列 簡單 1 167兩數之和
給定乙個整數陣列 nums 和乙個目標值 target,在該陣列中找出和為目標值的那兩個整數,並返回它們的陣列下標。假設每種輸入只會對應乙個答案,但是不能重複利用這個陣列中同樣的元素。給定 nums 2,7,11,15 target 9 因為 nums 0 nums 1 2 7 9,所以返回 0,1...
力扣刷題記錄(1)
class solution 行的個數 int rows matrix.length 列的個數 int cols matrix 0 length int i 0 int j cols 1 while i 0 else if matrix i j else return false class sol...
LeetCode刷題記錄1 兩數之和
給定乙個整數陣列 nums 和乙個目標值 target,請你在該陣列中找出和為目標值的那 兩個 整數,並返回他們的陣列下標。你可以假設每種輸入只會對應乙個答案。但是,你不能重複利用這個陣列中同樣的元素。給定 nums 2,7,11,15 target 9 因為 nums 0 nums 1 2 7 9...