ch
Feedback
Code With Virus

Code With Virus

前往频道在 Telegram

Coding channel @codewithvirus. 👈 Main group @avirustech 👈 Accenture @Accenturavirustech 👈 IBM. @IBMavirustech 👈 Tech Mahindra. @TechMavirustech 👈

显示更多

📈 Telegram 频道 Code With Virus 的分析概览

频道 Code With Virus (@codewithvirus) 英语 语言赛道中的 是活跃参与者。目前社区聚集了 10 559 名订阅者,在 技术与应用 类别中位列第 10 501,并在 印度 地区排名第 43 593

📊 受众指标与增长动态

невідомо 创建以来,项目保持高速增长,吸引了 10 559 名订阅者。

根据 04 十二月, 2025 的最新数据,频道保持稳定运转。过去 30 天订阅人数变化为 -87,过去 24 小时变化为 0,整体触达仍然可观。

  • 认证状态: 未认证
  • 互动率 (ER): 平均受众互动率为 0%。内容发布后 24 小时内通常能获得 N/A% 的反应,占订阅者总量。
  • 帖子覆盖: 每篇帖子平均可获得 0 次浏览,首日通常累积 0 次浏览。
  • 互动与反馈: 受众积极参与,单帖平均反应数为 0

📝 描述与内容策略

作者将该频道定位为表达主观观点的平台:
Coding channel @codewithvirus. 👈 Main group @avirustech 👈 Accenture @Accenturavirustech 👈 IBM. @IBMavirustech 👈 Tech Mahindra. @TechMavirustech 👈

凭借高频更新(最新数据采集于 05 十二月, 2025),频道始终保持新鲜度与高覆盖。分析显示受众积极互动,使其成为 技术与应用 类别中的关键影响点。

10 559
订阅者
无数据24 小时
-227
-8730
帖子存档
JUSPAY Job Role:- Software Developer Experiened Required:- 1 to 5 years Eligibility:- AnyOne Can apply Salary Range:- 8 - 30 LPA (Depend upon interview )

photo content
+1

photo content
+1

photo content
+1

IBM Research India Summer 2023 Internship Program - Applications invited Last date to receive the application is November 14, 2022. https://researcher.draco.res.ibm.com/researcher/view_group_subpage.php?id=8101

// import java.util.Scanner; class Main { static boolean iskaprekar(int n) { if (n == 1) return true; int s = n * n; int c = 0; while (s != 0) { c++; s /= 10; } s = n * n; for (int i = 1; i < c; i++) { int e = (int) Math.pow(10, i); if (e == n) continue; int sum = s / e + s % e; if (sum == n) return true; } return false; } public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); if (n <= 0) System.out.println("-1"); else if (iskaprekar(n)) System.out.println("TRUE"); else System.out.println("FALSE"); } }

photo content
+3

Goldman Sachs Internship Drive 2022 | New Analyst Program | Fresher Job | Graduate Job 2022 & 2023 Job Role : New Analyst Program Qualification: Bachelor's Or Master's Degree Batch:2022, 2023 Experience: Fresher Job Location : Bangalore Apply Link: https://bit.ly/3BVgaE4

// 207. Course Schedule class Solution { public: bool DFS(int s, vector<bool> &visted, vector<bool> &cuttVisteed, vector<int> adj[]) { visted[s] = true; cuttVisteed[s] = true; vector<int> data = adj[s]; for (auto x : data) { if (!visted[x]) { if (DFS(x, visted, cuttVisteed, adj)) { return true; } } else if (visted[x] && cuttVisteed[x]) { return true; } } cuttVisteed[s] = false; return false; } bool canFinish(int numCourses, vector<vector<int>> &prerequisites) { vector<bool> visted(numCourses, false), cuttVisteed(numCourses, false); vector<int> adj[numCourses]; for (auto x : prerequisites) { vector<int> data = x; int a = data[0]; int b = data[1]; adj[a].push_back(b); } for (int i = 0; i < numCourses; i++) { if (!visted[i]) { if (DFS(i, visted, cuttVisteed, adj)) { return false; } } } return true; } }; //C++ topological sort DFS || Easy Solution