Friday, August 14, 2026
Latest:
  • Präsentation für b1
  • Verb “werden” Konjugation
  • In German, verb sein (to be) Konjunktion
  • Wichtige wörter für B1 prüfung
  • What are the main differences between ApplicationContext and BeanFactory?
Upokary

Upokary

Quality information

  • Health
  • Life
  • Fashion
  • Food
  • Code
  • English
  • বাংলা
Technology 

Find if the sum of two integers is equal to the given value

Published: February 10, 2022
   const verifySum = (arr, total) => {
       for(let i = 0; i < arr.length ; i++ ){
           for(let j = 0 ; j < arr.length; j++) {
               if (i === j) {
                   continue;
               }

               if(total === arr[i] + arr[j]) {
                   return true;
               }
           }
       }
       return false;
   }

   const input = [5, 7, 1, 2, 8, 4, 3];
   console.log(verifySum(input, 15));

You May Also Like

How to convert date to timestamp in JavaScript?

April 15, 2021 beroza

Why the code executes after the redirection in java?

March 12, 2018 beroza

What are new in Java 14 or new features of Java 14

August 4, 2020 beroza

rest_no_route, no route was found matching the URL and request method WordPress

July 19, 2019 beroza

TypeError: Cannot read property ‘setState’ of undefined ReactJS

March 3, 2020 beroza

Count Pairs Of Similar Strings

January 6, 2023 beroza

Warning: Each child in a list should have a unique “key” prop

March 25, 2019 beroza

How to render and return html using render_to_string in rails?

May 27, 2020 beroza

Is there a print_r or var_dump equivalent in Ruby on Rails?

May 27, 2020 beroza

Why Upokary?

Upokary.com is a useful application in everyday life. It provides very handy information regarding every aspect of life. Each and every tip of upokary.com is meant to make life better.

Upokary tools

  • Youtube thumbnail
  • Youtube video downloader

Useful Links

  • Handy code
  • Technology
  • People
  • Programming
  • Quote
  • Travel
  • WordPress
  • IELTS
  • Kids

Pages

  • Sitemap
  • Privacy policy
  • About us
  • Contact us

Support

For any kind of query or question please drop a message in the following email: upokary@gmail.com
Copyright © 2026 Upokary. All rights reserved.