Wednesday, February 4, 2026
Latest:
  • Wichtige wörter für B1 prüfung
  • What are the main differences between ApplicationContext and BeanFactory?
  • German B1 Word list
  • How does Lazy annotation work in Spring?
  • How Spring framework resolves circular dependencies?
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 install free SSL to nginx with let’s encrypt on ubuntu 18.04?

June 5, 2020 beroza

How to get number of bits set to 1 of a binary number?

November 7, 2021 beroza

How to do a HTTP API call in ruby on rails?

July 16, 2020 beroza

How to run a spring boot application from command line?

December 4, 2019 beroza

When to use Stack data structure?

January 5, 2023 beroza

Programming tips for coding interview

June 17, 2023 beroza

Write a program to remove palindromic subsequences from string

June 16, 2022 beroza

Write a Program to Remove Stars From a String

February 26, 2023 beroza

Enforce the singleton property with a private constructor or an enum type

January 21, 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.