aboutsummaryrefslogtreecommitdiff
path: root/Computer_Science/leetcode/66-plus_one.c~
blob: 1936abf883a38a2f030bba167c3ea2e81d657ace (plain)
1
2
3
4
5
6
7
8
9
10
11
/**
 * Return an array of size *returnSize.
 * Note: The returned array must be malloced, assume caller calls free().
 */
int* plusOne(int* digits, int digitsSize, int* returnSize) {
	int i;
	int in;

	for(i = digitsSize - 1; i >=1; i--) {
		
}