my-solutions/problems/1-two-sum/lib.h

3 lines
80 B
C
Raw Normal View History

2022-11-17 15:45:40 +05:00
#pragma once
int* twoSum(int* nums, int numsSize, int target, int* returnSize);