Hirdetés
-
PROHARDVER!

Új hozzászólás Aktív témák
-
Chesterfield
őstag
Erre a feladatra tudtok hatékonyabb algoritmust?
Write a function that, when passed a list and a target sum, returns two distinct zero-based indices of any two of the numbers, whose sum is equal to the target sum. If there are no two numbers, the function should return null.
For example, FindTwoSum(new List<int>() { 3, 1, 5, 7, 5, 9 }, 10) should return a Tuple<int, int> containing any of the following pairs of indices:
0 and 3 (or 3 and 0) as 3 + 7 = 10
1 and 5 (or 5 and 1) as 1 + 9 = 10
2 and 4 (or 4 and 2) as 5 + 5 = 10public static Tuple<int, int> FindTwoSum(IList<int> list, int sum)
{
for (int i = 0; i < list.Count; i++)
{
for (int j = i + 1; j < list.Count; j++)
{
if (list[i] + list[j] == sum)
{
return Tuple.Create(i, j);
}
}
}
return null;
}azt mondja a kiértékelő, hogy Performance testen ez elbukik.
Új hozzászólás Aktív témák
● olvasd el a téma összefoglalót!
- Bittorrent topik
- Távozik az Apple vezérigazgatója
- Robotporszívók
- Vezeték nélküli fülhallgatók
- Poco X8 Pro Max - nem kell ide sem bank, sem akkubank
- AMD K6-III, és minden ami RETRO - Oldschool tuning
- The Division 2 (PC, XO, PS4)
- BestBuy topik
- Vezetékes FEJhallgatók
- Lényegretörő Akasa hálókártya a 10 gigabitre vágyóknak
- További aktív témák...
- Kingston FURY Beast RGB 2x8GB DDR4 3200MHz CL16 - Gari 2033.10.21.- ig - Eladó!
- Újszerű SteelSeries Arctis 9X Wireless Bolti ár:60k INGYEN FOXPOST
- Nintendo Switch Pro kontroller - Monster Hunter Rise
- Nintendo Switch V1 - Diablo limited edition + joycon pár + joycon charging grip + 128GB microSD
- Szinte Új SteelSeries Arctis Nova Pro Wireless Bolti ár:115k INGYEN FOXPOST
- 27% - ASUS NUC 15 Performance Core Ultra 9 275HX / RTX5070 MiniPC! BeszámítOK
- Ritkaság! Csere-Beszámítás! EVGA FTW3 Ultra RTX 3080 10GB GDDR6X Videokártya!
- Dell Wyse 5470,14",FHD, N4100 CPU,8GB DDR4,128GB SSD,WIN11,IR KAMERA
- 27% - ASUS TUF Gaming VG28UQL1A Monitor! 3840x2160 / 1ms / 144Hz / G-Sync / FreeSync BeszámítOK!
- Lenovo ThinkPad X1 Active Noise Cancellation fejhallgató
Állásajánlatok
Cég: Laptopműhely Bt.
Város: Budapest


