Hackerrank-Problem-Solving-Python-Solutions
Hackerrank-Problem-Solving-Python-Solutions copied to clipboard
Divisible sum pairs
your code will give IndexError
because when it reaches i == len(ar)-1 it tries to get ar[j] where j == i + 1 == len(ar)
your code will give IndexError
because when it reaches i == len(ar)-1 it tries to get ar[j] where j == i + 1 == len(ar)
Not getting any such error