Codility Lekcja 3.2: PermMissingElem

preview_player
Показать описание

---

Рекомендации по теме
Комментарии
Автор

Thanks man!

Here is the solution in python following your way of solving:
def solution(a):
bol= [False for i in range(len(a)+1)]
for x in a:
bol[x-1]=True
return (bol.index(False)+1)

Amonnuns
Автор

Próbowałem rozwiązać zadanie stosując streamy ale max to 70%. Ma ktoś pomysł jak uzyskać tą metodą maxa?
public int solution(int[] A) {

int sum = Arrays.stream(A).sum();

int length = A.length + 1;

int totalSum = (length * (length + 1)) / 2;

return totalSum - sum;}

mikemike-zbkr