Triplet Family | GeeksForGeeks | Problem of the Day

  Рет қаралды 86

Mathematics

Mathematics

Күн бұрын

Пікірлер: 3
@mathematics3398
@mathematics3398 20 күн бұрын
Table of Contents 0:00 Problem Statement 0:40 Solution 3:05 Pseudo Code 4:20 Code - Python 5:04 Code - C++
@mathematics3398
@mathematics3398 20 күн бұрын
class Solution: def findTriplet(self, arr): arr.sort() i = len(arr) - 1; while i >= 0: j = 0 k = i - 1; while j < k: if arr[j] + arr[k] == arr[i]: return True if arr[j] + arr[k] < arr[i]: j += 1 else: k -= 1 i -= 1 return False
@mathematics3398
@mathematics3398 20 күн бұрын
class Solution { public: bool findTriplet(vector& arr) { sort(arr.begin(), arr.end()); for (int i = arr.size() - 1; i >= 0; i--) { int j = 0, k = i - 1; while (j < k) { if (arr[j] + arr[k] == arr[i]) return true; if (arr[j] + arr[k] < arr[i]) j++; else k--; } } return false; } };
Pairs with difference k | GeeksForGeeks | Problem of the Day
12:50
Vim Tips I Wish I Knew Earlier
23:00
Sebastian Daschner
Рет қаралды 77 М.
Twin Telepathy Challenge!
00:23
Stokes Twins
Рет қаралды 48 МЛН
PRANK😂 rate Mark’s kick 1-10 🤕
00:14
Diana Belitskay
Рет қаралды 11 МЛН
Walking on LEGO Be Like... #shorts #mingweirocks
00:41
mingweirocks
Рет қаралды 7 МЛН
Why MOST Developer Portfolios are Worthless
12:50
Travis Media
Рет қаралды 13 М.
Nearest Multiple of 10 | Mathematics | EASY
21:41
Gale Praveen
Рет қаралды 129
Triplet Family | gfg potd | 27-10-24 | GFG Problem of the day
16:06
Why Writing Simple Code Isn't So Simple in Real Projects
12:10
Zoran Horvat
Рет қаралды 13 М.
The Most Successful Idea in Computer Science
16:03
Core Dumped
Рет қаралды 48 М.
Rotate by 90 degree | GeeksForGeeks | Problem of the Day
3:54
Contiguous Array - Leetcode 525 - Python
15:41
NeetCodeIO
Рет қаралды 28 М.
Twin Telepathy Challenge!
00:23
Stokes Twins
Рет қаралды 48 МЛН