Thursday, January 29, 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

Uncaught (in promise) SyntaxError: Unexpected token in JSON at position 0

April 18, 2021 beroza

Find repeating elements in a given array

November 19, 2021 beroza

Maximum Value of a String in an Array

December 29, 2022 beroza

ERROR 1273 (HY000): Unknown collation: ‘utf8mb4_0900_ai_ci’

August 26, 2021 beroza

Replace All ?’s to Avoid Consecutive Repeating Characters

January 11, 2023 beroza

Sum of Root To Leaf Binary Numbers

January 8, 2023 beroza

How to render and return html using render_to_string in rails?

May 27, 2020 beroza

How to merge two array of objects and make it unique based on a property?

April 12, 2021 beroza

Mergesort algorithm

December 17, 2022 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.