5 Oct 2025, 14:31 UTC≈3,050 views2 reactionsread 8 August 2026 Sabhi log arattai app install karlo
Hame apne desh ki app ko support karna chahiye
Vahi pe ek doosre se bat Karo whatsapp ki bajaye
Dheere dheere sare log whatsapp chhod ke arattai use karo
Isme aapko hamare sare arattai app me jo groups/channels hai aur honge vo milte rahenge 👇
https://aratt.ai/@ignoustudycenter
❤2
Signed राम सियाराम सियाराम जय जय राम 🙏 तुम साथ हो जो मेरे, किस चीज की कमी है ।
3 Oct 2025, 16:50 UTC≈3,020 views1 reactionsread 8 August 2026 Join BCA/MCA developers group on arattai
A Indian chat app by zoho Supported by government
https://chat.arattai.in/groups/t43545f313237373536333834333438343434363931355f32303030353533333235382d47437c3031303131353032353136343137353935303935383035393830
❤1
Signed राम सियाराम सियाराम जय जय राम 🙏 तुम साथ हो जो मेरे, किस चीज की कमी है ।
15 Sept 2025, 04:05 UTC≈2,630 views1 reactionsread 8 August 2026 New Bot
@VideoCompress0bot
Direct send your large size video to this bot and it will convert to small size
Warning: Don't send already compressed video or low quality video other wise it will increase those size instead decreasing
❤1
Signed राम सियाराम सियाराम जय जय राम 🙏 तुम साथ हो जो मेरे, किस चीज की कमी है ।
13 Sept 2025, 02:33 UTC≈2,390 views5 reactionsread 8 August 2026 // Shows Indian Time
import java.time.*;
import java.time.format.DateTimeFormatter;
public class ISTTime {
public static void main(String[] args) {
// Get current time in IST
ZoneId istZone = ZoneId.of("Asia/Kolkata");
ZonedDateTime istTime = ZonedDateTime.now(istZone);
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd-MM-yyyy HH:mm:ss");
System.out.println("…
❤5
Signed राम सियाराम सियाराम जय जय राम 🙏 तुम साथ हो जो मेरे, किस चीज की कमी है ।
12 Sept 2025, 04:26 UTC≈2,010 viewsread 8 August 2026 Join @LogicBots
For
Getting Updates of our bots
Sujjestion for new bot
Sujjestion for new features
https://t.me/logicBots
Signed राम सियाराम सियाराम जय जय राम 🙏 तुम साथ हो जो मेरे, किस चीज की कमी है ।
5 Jul 2025, 15:26 UTC≈3,000 views4 reactionsread 8 August 2026 Best time to buy /sell any stock
public class buysell {
public static int buySellStock(int prices[]) {
int MaxProfit = 0;
int buyPrice = Integer.MAX_VALUE;
for (int index = 0; index < prices.length; index++) {
if (buyPrice < prices[index]) {
int profit = prices[index] - buyPrice;
MaxProfit = Math.max(profit, MaxProfit);
} else {
…
❤2🔥2
Signed </> ᴍᴜᴋᴇsʜ </>
4 Jul 2025, 05:56 UTC≈2,490 views4 reactionsread 8 August 2026 TrapRainWater Code time complexibilty O(n)
public class traprainwat {
public static int trapwater(int height[]) {
// left max
int n = height.length;
int leftMax[] = new int[n];
leftMax[0] = height[0];
for (int i = 1; i < n; i++) {
leftMax[i] = Math.max(height[i], leftMax[i - 1]);
}
// for (int i = 0; i < n; i++) {
// System.out.print(lef…
❤2🔥2
Signed </> ᴍᴜᴋᴇsʜ </>
2 Jul 2025, 03:12 UTC≈1,930 viewsread 8 August 2026 Poll
Your Favorite language?
- C±+6%
- Java71%
- Python17%
- Php1%
- Javascript4%
- Other1%
Shares as published. No per-option vote count is published by Telegram, so none is shown.
Signed राम सियाराम सियाराम जय जय राम 🙏 तुम साथ हो जो मेरे, किस चीज की कमी है ।
27 Jun 2025, 16:23 UTC≈1,980 views4 reactionsread 8 August 2026 Maximum Subarray sum using Kadane's Algorithm.
import java.util.*;
public class Kadane {
public static void kaddanelgoSum(int numbers[]) {
int currsum = 0;
int maxsum = Integer.MIN_VALUE;
for (int index = 0; index < numbers.length; index++) {
currsum = currsum + numbers[index];
if (currsum < 0) {
currsum = 0;
}
// System.…
❤4
Signed </> ᴍᴜᴋᴇsʜ </>
26 Jun 2025, 17:21 UTC≈1,580 views1 reactionsread 8 August 2026 Subarray
public class subArr {
public static void subArray(int numbers[]) {
for (int i = 0; i < numbers.length; i++) {
int start = i;
// subarr
for (int j = i; j < numbers.length; j++) {
int end = j;
// System.out.print(numbers[j]);
for (int k = start; k <= end; k++) {
System.out.print(+numbers[k] + " "…
❤1
Signed </> ᴍᴜᴋᴇsʜ </>
26 Jun 2025, 15:38 UTC≈1,370 viewsread 8 August 2026 Reverse an array
public class reverseArr {
public static void reverse(int numbers[]) {
int start = 0;
int last = numbers.length - 1;
while (start < last) {
int temp = numbers[last];
numbers[last] = numbers[start];
numbers[start] = temp;
start++;
last--;
}
}
public static void main(String[] args) {
int n…
Signed </> ᴍᴜᴋᴇsʜ </>
19 Jun 2025, 17:34 UTC≈1,460 views0 reactionsread 8 August 2026 Forwarded from @CodesSnippet
Diamond Pattern of number n
public class diamond {
public static void diamond_pattern(int n) {
for (int i = 1; i <= n; i++) {
// blank space
for (int j = 1; j <= (n - i); j++) {
System.out.print(" ");
}
// star
for (int j = 1; j <= 2 * (i - 1) + 1; j++) {
System.out.print("*");
}
System.ou…
Signed </> ᴍᴜᴋᴇsʜ </>
Showing the 12 most recent of 20 posts we hold for @Java_Codes_Pro. View and reaction counts are the latest single reading for each post, not a live figure, and a recent post is still accumulating both. A view count marked ≈ was rounded by Telegram before we ever saw it — t.me prints views in full below 1,000 and to three significant figures above, so ≈1,200,000 means somewhere between 1,150,000 and 1,249,999. Unmarked counts are exact. Text is reproduced from the public post preview and truncated for length.