uz
Feedback
allcoding1_official

allcoding1_official

Kanalga Telegram’da o‘tish

📈 Telegram kanali allcoding1_official analitikasi

allcoding1_official (@allcoding1_official) Ingliz til segmentidagi kanali faol ishtirokchi. Hozirda hamjamiyat 85 483 obunachidan iborat bo'lib, Texnologiyalar & Aralashmalar toifasida 1 507-o'rinni va Hindiston mintaqasida 3 480-o'rinni egallagan.

📊 Auditoriya ko‘rsatkichlari va dinamika

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

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

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

📝 Tavsif va kontent siyosati

Kanal uchun tavsif kiritilmagan.

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

85 483
Obunachilar
-3524 soatlar
-2687 kunlar
-1 36930 kunlar
Postlar arxiv
function ArithGeoll(arr) { let arith = true; let d = Math.abs(arr[0]- arr[1]); for (let i = 2; i < arr.length; i++) { if (
function ArithGeoll(arr) { let arith = true; let d = Math.abs(arr[0]- arr[1]); for (let i = 2; i < arr.length; i++) { if (Math.abs(arr[i] - arr[i - 1]) !== d) { arith = false; } } if (arith) { return "Arithmetic"; } let geo = true; d = arr[1]/ arr[0]; for (let i = 2; i < arr.length; i++) if (Math.abs(arr[i] / arr[i- { 1]) !== d) { geo = false; } } if (geo) { return "Geometric"; } if (larith && !geo) { return "-1"; } }

photo content
+1

photo content

function ArithGeoll(arr) { let arith = true; let d = Math.abs(arr[0]- arr[1]); for (let i = 2; i < arr.length; i++) { if (Math.abs(arr[i] - arr[i - 1]) !== d) { arith = false; } } if (arith) { return "Arithmetic"; } let geo = true; d = arr[1]/ arr[0]; for (let i = 2; i < arr.length; i++) if (Math.abs(arr[i] / arr[i- { 1]) !== d) { geo = false; } }

photo content

photo content

Send a Questions

500 TB Tutorials + Books + Courses + Trainings + Workshops + Educational Resources 🔹Data science 🔹Python 🔹Artificial Intel
+2
500 TB Tutorials + Books + Courses + Trainings + Workshops + Educational Resources 🔹Data science 🔹Python 🔹Artificial Intelligence 🔹AWS Certified 🔹Cloud 🔹BIG DATA 🔹Data Analytics 🔹BI 🔹Google Cloud Platform 🔹IT Training 🔹MBA 🔹Machine Learning 🔹Deep Learning 🔹Ethical Hacking 🔹SPSS 🔹Statistics 🔹Data Base 🔹Learning language resources ( English🏴󐁧󐁢󐁥󐁮󐁧󐁿 , French🇨🇵 , German🇩🇪 ) ₹300 Contact:- @meterials_available

struct Request { string id; string start_time; string end_time; }; bool compare(Request a, Request b) { return a.start_time &
struct Request { string id; string start_time; string end_time; }; bool compare(Request a, Request b) { return a.start_time < b.start_time; } int solve(vector requests) { sort(requests.begin(), requests.end(), compare); int max_concurrent = 0; int current_concurrent = 0; string current_end_time = "00:00:00"; for (Request request : requests) { if (request.start_time >= current_end_time) { current_concurrent--; } else { current_concurrent++; if (current_concurrent > max_concurrent) { max_concurrent = current_concurrent; } } if (request.end_time > current_end_time) { current_end_time = request.end_time; } } return max_concurrent; }

photo content
+1

500 TB Tutorials + Books + Courses + Trainings + Workshops + Educational Resources 🔹Data science 🔹Python 🔹Artificial Intel
+2
500 TB Tutorials + Books + Courses + Trainings + Workshops + Educational Resources 🔹Data science 🔹Python 🔹Artificial Intelligence 🔹AWS Certified 🔹Cloud 🔹BIG DATA 🔹Data Analytics 🔹BI 🔹Google Cloud Platform 🔹IT Training 🔹MBA 🔹Machine Learning 🔹Deep Learning 🔹Ethical Hacking 🔹SPSS 🔹Statistics 🔹Data Base 🔹Learning language resources ( English🏴󐁧󐁢󐁥󐁮󐁧󐁿 , French🇨🇵 , German🇩🇪 ) ₹300 Contact:- @meterials_available

sticker.webp0.13 KB

#define vv(a) vector<vector<int>>(a) int solve(int n, int m, vector<vector<int>> &a) { vv(right)(n, vector<int>(m, 0)); vv(down)(n, vector<int>(m, 0)); vv(left)(n, vector<int>(m, 0)); for (int i = 0; i < n; i++) { int cnt = 0; for (int j = m - 1; j >= 0; j--) { right[i][j] = cnt; if (a[i][j] == 1) cnt++; } } for (int i = 0; i < n; i++) { int cnt = 0; for (int j = 0; j < m; j++) { left[i][j] = cnt; if (a[i][j] == 1) cnt++; } } for (int j = 0; j < m; j++) { int cnt = 0; for (int i = n - 1; i >= 0; i--) { down[i][j] = cnt; if (a[i][j] == 1) cnt++; } } int ans = 0; for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { if (a[i][j] == 1) { ans += (right[i][j] * down[i][j]); ans += (left[i][j] * down[i][j]); } } } return ans; } C++ Telegram:- @allcoding1_official

photo content

URL Hashing
+1
URL Hashing

photo content
+1

int solve(int n, vector&amp; arr) { &nbsp;&nbsp;&nbsp; while (arr.size() &gt; 1) { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
int solve(int n, vector& arr) {     while (arr.size() > 1) {         int len = INT_MAX;         int idx = -1;         for (int i = 0; i < arr.size() - 1; ++i) {             int d = arr[i + 1];             if (d == 0 || arr[i] == 0) {                 continue;             }             int r = min(arr[i] % d, d % arr[i]);             if (r < len) {                 len = r;                 idx = i;             }         }         if (idx == -1) {             break;         }         int d = arr[idx + 1];         if (d != 0) {             arr[idx] = min(arr[idx] % d, d % arr[idx]);         }         arr.erase(arr.begin() + idx + 1);     }     return arr.size(); } Women Day Mathematics Challenge Telegram:-

#include <iostream>
#include <sql.h>
#include <sqlext.h>

#define MAX_QUERY_LEN 1000

int main() {
    // Declare variables for ODBC connection
    SQLHENV henv;
    SQLHDBC hdbc;
    SQLHSTMT hstmt;
    SQLRETURN retcode;

    // Allocate environment handle
    retcode = SQLAllocHandle(SQL_HANDLE_ENV, SQL_NULL_HANDLE, &amp;henv);

    // Set the ODBC version to use
    retcode = SQLSetEnvAttr(henv, SQL_ATTR_ODBC_VERSION, (SQLPOINTER)SQL_OV_ODBC3, 0);

    // Allocate connection handle
    retcode = SQLAllocHandle(SQL_HANDLE_DBC, henv, &amp;hdbc);

    // Connect to the data source
    retcode = SQLConnect(hdbc, (SQLCHAR*)"your_datasource", SQL_NTS, (SQLCHAR*)"username", SQL_NTS, (SQLCHAR*)"password", SQL_NTS);

    // Allocate statement handle
    retcode = SQLAllocHandle(SQL_HANDLE_STMT, hdbc, &amp;hstmt);

    // Prepare the SQL query
    char query[MAX_QUERY_LEN] = "SELECT DATE_FORMAT(date_column, '%Y-%m') AS month_year, source, COUNT(*) AS total_number FROM your_table WHERE YEAR(date_column) = '2022' AND (source = 'Jobs' OR source = 'Freelancers') GROUP BY month_year, source ORDER BY month_year ASC, source ASC";

    // Execute the SQL query
    retcode = SQLExecDirect(hstmt, (SQLCHAR*)query, SQL_NTS);

    // Fetch and process the results
    while (SQLFetch(hstmt) == SQL_SUCCESS) {
        // Process the retrieved data here
    }

    // Free the handles
    SQLFreeHandle(SQL_HANDLE_STMT, hstmt);
    SQLDisconnect(hdbc);
    SQLFreeHandle(SQL_HANDLE_DBC, hdbc);
    SQLFreeHandle(SQL_HANDLE_ENV, henv);

    return 0;
}
Please note that the above code provides a basic framework for executing SQL queries in C++. You will need to replace your_datasource, username, password, your_table, and date_column with your actual database connection details, table name, and column name.

photo content