Frage im Vorstellungsgespräch bei Oracle

find the missing number from the arithmetic progression.

Antwort im Vorstellungsgespräch

Anonym

10. Mai 2020

//Finding the missing number in AP public static int findMissingNumber(int[] a,int difference) { for(int i=0;i

1