diff --git a/1534. Count Good Triplets b/1534. Count Good Triplets new file mode 100644 index 0000000..598f6f9 --- /dev/null +++ b/1534. Count Good Triplets @@ -0,0 +1,16 @@ +class Solution { +public: + int countGoodTriplets(vector& arr, int a, int b, int c) { + int ans=0; + for(int i=0;i