coderbyte icon indicating copy to clipboard operation
coderbyte copied to clipboard

Coding and algorithm challenges completed on coderbyte.com

Results 1 coderbyte issues
Sort by recently updated
recently updated
newest added

//another approach function arithGeo(arr) { if (arr.length === 1 || arr.length === 0) { return -1; } if(arr[0]*arr[2] === arr[1]*arr[1]) return "Geometric"; else return "Arithmetic"; }