Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

807
Visualizações
HackerEarth Question solution failing for the input testcase

Below hackerearth qn has been asked in one of coding qns

Farthest from zero

You are given an integer array A of size N.

Task Write a program to print the farthest element from 0. If there are multiple elements, print the number with the least value.

Input format

  • The first line contains a single integer N denoting the size of the array A.
  • The next line contains N integers denoting the elements of the array A.

Output format

Print the farthest element from 0.

Sample input 1

5

1 2 3 4 5

Sample Output1

5

Solution prepared by me:

public static farthestfromzero(int N, int [] Arr) {
    TreeSet<Integer> ts = new TreeSet<Integer>();
    for (int i=0; i<N; i++){
          ts.add(Arr[i]);
    } 
  return ts.last();
}

Ask: This solution worked for me for the initial scenario, but when I submitted it , it didn't worked.

over 4 years ago · Santiago Trujillo
3 Respostas
Responde à pergunta

0

Your algorithm does not account for negative integers.

Consider this array:

[-10, 7, 5, 1]

Which number is furthest from zero?
Which will your algorithm pick?

Also note, this requirement:

If there are multiple elements, print the number with the least value.

So, from an array like this:

[-10, 1, 2 ,10]

You need to pick -10, and not 10.

over 4 years ago · Santiago Trujillo Relatório

0

That is because the tree set is sorted by the values, the number can be begtive. So... I think it should be this:

public static int farthestfromzero(int N, int [] Arr) {
    TreeSet<Integer> ts = new TreeSet<Integer>();
    for (int i=0; i<N; i++){
          ts.add(Arr[i]);
    } 
  int maxV = ts.last();
  int minV = ts.first();
  
  if(Math.abs(minV) >= maxV){
      return minV;
  }
  return maxV;

}

Also if it's memory exceed, then try this:

    public static int farthestfromzero(int N, int [] Arr) {//You don't really need to store every elements
        int best = 0;
        
        for(int i = 0;i<N;i++) {
            if(Math.abs(Arr[i]) > Math.abs(best)) {
                best = Arr[i];
            }else if(Math.abs(best) == Math.abs(Arr[i]) && best > Arr[i]) {
                best = Arr[i];
            }
        }
        return best;    
    }
over 4 years ago · Santiago Trujillo Relatório

0

Here is my answer. I just wrote the core logic. Please add the basic condition check. Also, I did it in Python3. Commented code the expansion of the below single line code.

A1 = sorted(A)
print(A1[0]) if (abs(A1[0])> abs(A1[-1])) else print(A1[-1]) if (abs(A1[0]) < abs(A1[-1])) else print(A1[0])

# if (abs(A1[0])== abs(A1[-1])): 
#     print(A1[0])
# else:
#     if(abs(A1[0]) > abs(A1[-1])):
#         print(A1[0])
#     else:
#         print(A1[-1])
over 4 years ago · Santiago Trujillo Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda