Triplet Family👪 | Basic problem | GFG POTD | 27-10-24 | GFG Problem of the day | Easy Explanation |

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 พ.ย. 2024

ความคิดเห็น • 1

  • @codewithuday
    @codewithuday  10 วันที่ผ่านมา

    // Triplet Family Similar to 3 Sum or Triplets Sum in the Array
    class Solution {
    public:
    bool findTriplet(vector& arr) {
    // Your code
    sort(arr.begin(),arr.end()); // O(n*log(n))
    // O(n^2)
    for(int i = arr.size()-1;i>=0 ;i--){
    int j = 0, k = i-1;
    while(j arr[i]) k--;
    else if(sum