uz
Feedback
allcoding1

allcoding1

Kanalga Telegram’da o‘tish

Ko'proq ko'rsatish

📈 Telegram kanali allcoding1 analitikasi

allcoding1 (@allcoding1) Ingliz til segmentidagi kanali faol ishtirokchi. Hozirda hamjamiyat 22 409 obunachidan iborat bo'lib, Taʼlim toifasida 8 808-o'rinni va Hindiston mintaqasida 18 944-o'rinni egallagan.

📊 Auditoriya ko‘rsatkichlari va dinamika

невідомо sanasidan buyon loyiha tez o‘sib, 22 409 obunachiga ega bo‘ldi.

27 Iyun, 2026 dagi oxirgi ma’lumotlarga ko‘ra kanal barqaror faollikka ega. Oxirgi 30 kunda obunachilar soni -383 ga, so‘nggi 24 soatda esa -21 ga o‘zgardi va umumiy qamrov yuqori darajada qolmoqda.

  • Tasdiqlash holati: Tasdiqlanmagan
  • Jalb etish (ER): Auditoriya o‘rtacha 4.45% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 1.42% ini tashkil etuvchi reaksiyalarni to‘playdi.
  • Post qamrovi: Har bir post o‘rtacha 997 marta ko‘riladi; birinchi sutkada odatda 318 ta ko‘rish yig‘iladi.
  • Reaksiyalar va o‘zaro ta’sir: Auditoriya faol: har bir postga o‘rtacha 2 ta reaksiya keladi.
  • Tematik yo‘nalishlar: Kontent dsa, stack, namaste, javascript, learning kabi asosiy mavzularga jamlangan.

📝 Tavsif va kontent siyosati

Kanal uchun tavsif kiritilmagan.

Yuqori yangilanish chastotasi (oxirgi ma’lumot 28 Iyun, 2026 da olingan) sababli kanal doimo dolzarb va katta qamrovli bo‘lib qoladi. Analitika auditoriya kontent bilan faol hamkorlik qilishini, uni Taʼlim toifasidagi muhim ta’sir nuqtasiga aylantirishini ko‘rsatadi.

22 409
Obunachilar
-2124 soatlar
-927 kunlar
-38330 kunlar
Postlar arxiv
#include using namespace std; #define ll long long int ll solve(ll n) { ll position = 1; ll m = 1; while (!(n & m)) { m =
#include <bits/stdc++.h> using namespace std; #define ll long long int ll solve(ll n) { ll position = 1; ll m = 1; while (!(n & m)) { m = m << 1; position++; } return position; } int main() { // your code goes here ll n,p; cin>>n; vector<int> ans(n); for(int i=0;i<n;i++) { cin>>p; ans[i] = solve(p+1); } for(int i=0;i<n;i++) cout<<ans[i]<<"\n"; return 0; } C++ Telegram:- @allcoding1

class Solution { public: vector<int> frequncey(string s) { vector<int> freq(26, 0); for (int i = 0; i < s.length(); i++) freq[s[i] - 'a']++; return freq; } vector<string> wordSubsets(vector<string> &words1, vector<string> &words2) { vector<string> ans; vector<int> Freq(26, 0); for (auto &x : words2) { vector<int> freq1 = frequncey(x); for (int i = 0; i < 26; i++) Freq[i] = max(freq1[i], Freq[i]); } for (auto &x : words1) { vector<int> freq1 = frequncey(x); bool flag = true; for (int i = 0; i < 26; i++) { if (freq1[i] < Freq[i]) { flag = false; break; } } if (flag) ans.push_back(x); } return ans; } }; C++ Word Subsets Telegram:- @allcoding1

Python3 telegram:- @allcoding1
+1
Python3 telegram:- @allcoding1

Python3 telegram:- @allcoding1
+1
Python3 telegram:- @allcoding1

Array AR of size N code Python3 telegram:- @allcoding1
Array AR of size N code Python3 telegram:- @allcoding1

#include<bits/stdc++.h> using namespace std; int main(){ int t; cin>>t; while(t--){ string str; cin >> str; int n = str.length(), ans = 0; for(int i = 0; i < n; i++){ if(str[i] == '5' || str[i] == '6') continue; else ans += 1; } cout << ans << endl; } return 0; } Beautiful Number Telegram:- @allcoding1

Python minimum operatios required to sort A code Telegram -
Python minimum operatios required to sort A code Telegram -

Python 3✅ Telegram:- @allcoding1_official
+2
Python 3✅ Telegram:- @allcoding1_official

Java Telegram:- @allcoding1_official
+1
Java Telegram:- @allcoding1_official

Stone bucket code Python 3 Telegram:- @allcoding1
Stone bucket code Python 3 Telegram:- @allcoding1

Python Telegram -
+1
Python Telegram -

array AR of size N perfect_sum(arr, s, result) : x = [0]*len(arr) j = len(arr) - 1 while (s > 0) : x[j] = s % 2 s = s // 2 j
array AR of size N perfect_sum(arr, s, result) : x = [0]*len(arr) j = len(arr) - 1 while (s > 0) : x[j] = s % 2 s = s // 2 j -= 1 sum = 0 for i in range(len(arr)) : if (x[i] == 1) : sum += arr[i] if (sum == result) : print("{",end=""); for i in range(len(arr)) : if (x[i] == 1) : print(arr[i],end= ", "); print("}, ",end="") def print_subset(arr, K) : x = pow(2, len(arr)) for i in range(1, x): perfect_sum(arr, i, K) # Driver code arr = [ ] n = int(input("Enter length of array : ")) s=int(input("Enter sum : ")) for i in range(n): ele=int(input("Enter element : ")) arr.append(ele) print_subset(arr, s) Python Telegram:- @allcoding1

def minOperations(arr1, arr2, i, j):           # Base Case     if arr1 == arr2:         return 0               if i >= len(arr1) or j >= len(arr2):         return 0           # If arr[i] < arr[j]     if arr1[i] < arr2[j]:                   # Include the current element         return 1 \         + minOperations(arr1, arr2, i + 1, j + 1)               # Otherwise, excluding the current element     return max(minOperations(arr1, arr2, i, j + 1),                minOperations(arr1, arr2, i + 1, j))       # Function that counts the minimum # moves required to sort the array def minOperationsUtil(arr):           brr = sorted(arr);           # If both the arrays are equal     if(arr == brr):                   # No moves required         print("0")       # Otherwise     else:                   # Print minimum operations required         print(minOperations(arr, brr,) Python Q) minimum operations Telegram - @allcoding1

# A Naive recursive python program to find minimum of coins # to make a given change V    import sys    # m is size of coins array (number of different coins) def minCoins(coins, m, V):        # base case     if (V == 0):         return 0        # Initialize result     res = sys.maxsize            # Try every coin that has smaller value than V     for i in range(0, m):         if (coins[i] <= V):             sub_res = minCoins(coins, m, V-coins[i])                # Check for INT_MAX to avoid overflow and see if             # result can minimized             if (sub_res != sys.maxsize and sub_res + 1 < res):                 res = sub_res + 1   //@allcoding1_official     return res    # Driver program to test above function coins = [9, 6, 5, 1] m = len(coins) V = 11 print("Minimum coins required is",minCoins(coins, m, V)) Python 3 Telegram:-  @allcoding1

photo content
+1

Minswap C++ language
Minswap C++ language

photo content

array AR of size N perfect_sum(arr, s, result) : x = [0]*len(arr) j = len(arr) - 1 while (s > 0) : x[j] = s % 2 s = s // 2 j
array AR of size N perfect_sum(arr, s, result) : x = [0]*len(arr) j = len(arr) - 1 while (s > 0) : x[j] = s % 2 s = s // 2 j -= 1 sum = 0 for i in range(len(arr)) : if (x[i] == 1) : sum += arr[i] if (sum == result) : print("{",end=""); for i in range(len(arr)) : if (x[i] == 1) : print(arr[i],end= ", "); print("}, ",end="") def print_subset(arr, K) : x = pow(2, len(arr)) for i in range(1, x): perfect_sum(arr, i, K) # Driver code arr = [ ] n = int(input("Enter length of array : ")) s=int(input("Enter sum : ")) for i in range(n): ele=int(input("Enter element : ")) arr.append(ele) print_subset(arr, s) Python Telegram :- @allcoding1_official

class CountOccurrences { public static void main(String[] args) { String str = "aabbccd"; char a[]=str.toCharArray(); int cnt
class CountOccurrences { public static void main(String[] args) { String str = "aabbccd"; char a[]=str.toCharArray(); int cnt = 0; for (int i = 0; i < a.length; i++) { for (int j = i + 1; j < a.length; j++) { if ((a[i] == a[j])) { cnt++; } } } System.out.println(cnt); } } Java Telegram:- @allcoding1_official

Number Of Subsequences Code For Infosys int A[] = {10,13,7,8,14,11}; int n = 6; int memo[6];//initialized with -1s; int count(int currIndex){ if (currIndex == n-1) return 1; if (memo[currIndex] != -1) return memo[currIndex]; int res = 0; for (int i=currIndex+1 ; i<n ; i++){ if (abss(A[currIndex] - A[i]) <= 3){ res += count(i); } } memo[currIndex] = res; return res; } c++ Telegram:- @allcoding1