首页
Python
Java
IOS
Andorid
NodeJS
JavaScript
HTML5
【
CommonTwo
】的更多相关文章
CommonTwo
public int commonTwo(String[] a, String[] b) { int startA=0; int startB=0; int count=0; while((( startA < a.length ) && ( startB < b.length ))) { if(startA >0){ if(a[startA].equals(a[startA-1])){ startA++; continue; } } if(startB >0){…