SIPM-Editorial

PROBLEM LINK-: CLICK HERE

PROBLEM SETTERS-: aliencoder_07

EDITORIALIST-: @dcpandey

DIFFICULTY-: Easy

PREREQUISITES-: IMPLEMENTATION ,ARRAYS,SET.

PROBLEM-: Recently Zenny read about Array and now she is cracking Array’s questions. She told about this to his friend Zen . Zen wants to check how much Zenny know about Array .So, he has given her an array of integers of size N .

EXPLANATION-: In this problem you just need to find all distinct positive integers and negative integers, you can implement this by using 2 sets ,then at last find the sum of all the elements inside the set.

SOLUTION-: CLICK HERE