164-orion-innovation-turkey-bootcamp / hafta1-odev1-assignment-kircaliece

hafta1-odev1-assignment-kircaliece created by GitHub Classroom

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hafta1-odev1

1-) Bir sayı dizisi ve hedef değeri veriliyor. Toplamı, hedefe eşit olan ikililerin indexlerini dönen fonksiyonu yazınız.

Örnek 1:

Input: nums = [2,7,11,15], target = 9 Output: [0,1] Output: Çünkü nums[0] + nums[1] == 9, return [0, 1].

Örnek 2:

Input: nums = [3,2,4], target = 6 Output: [1,2]

Örnek 3:

Input: nums = [3,3], target = 6 Output: [0,1]

About

hafta1-odev1-assignment-kircaliece created by GitHub Classroom


Languages

Language:JavaScript 100.0%