leetcode的C语言表述

大一狗一只,没有深入学习C++等语言,只能用C进行表示,请大神勿喷。

如果出现侵权行为,请及时联系 [email protected],以及时删去博客

博客转载需要经过本人同意...谢谢合作(leetcodeC语言代码长期不定时更新)

Remove Duplicates from Sorted Array

Given a sorted array, remove the duplicates in place such that each element appear only once
and return the new length.
Do not allocate extra space for another array, you must do this in place with constant memory.
For example, Given input array A = [1,1,2],
Your function should return length = 2, and A is now [1,2].

int main(){
     if(!A[0])return error;//判空
     int rep=0;//like pointer
     for(int i=0;i

 
  
 
  

你可能感兴趣的:(C语言,算法,数据结构)