Netcoreπ
Both codes are doneπ±
π― Plag freeπ±
Mission accomplishedπ
OA HELP
@MRTRUELIVING_IX
@MRTRUELIVING_IX
π― TEST CLEARANCEπ
#NetCore #SD #Coding #round 1
Both codes are done
π― Plag free
Mission accomplished
OA HELP
@MRTRUELIVING_IX
@MRTRUELIVING_IX
π― TEST CLEARANCE
#NetCore #SD #Coding #round 1
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Successfully cleared β€οΈβΆοΈ π±
Prev
https://t.me/code_alphix/3747?single
#Amazon #SDET #Done
π― Test Clearanceπ±
Prev
https://t.me/code_alphix/3747?single
#Amazon #SDET #Done
π― Test Clearance
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
https://t.me/code_alphix
Share this message help them achieve 100% test clearance!
I hope you will doπ π
Share this message help them achieve 100% test clearance!
I hope you will do
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Last call for
throughtworks
Swiggy FE & BE
Zomato FT
Netcore
Asian paints
DM FOR π― TEST CLEARANCE π
@MRTRUELIVING_IX
@MRTRUELIVING_IX
Accentureπ¦
Accenture ON // Off campus placement help available
Prev:
https://t.me/code_alphix/3524?single
DM -@mrtrueliving_ix
π― Test Clearance
https://t.me/code_alphix/3798?single
Please open Telegram to view this post
VIEW IN TELEGRAM
Netcoreπ
Both codes are doneπ±
Test accomplishedπ
OA HELP
@MRTRUELIVING_IX
@MRTRUELIVING_IX
π― TEST CLEARANCEπ
#NetCore #SD #Coding #round 1
Both codes are done
Test accomplished
OA HELP
@MRTRUELIVING_IX
@MRTRUELIVING_IX
π― TEST CLEARANCE
#NetCore #SD #Coding #round 1
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
https://docs.google.com/forms/d/e/1FAIpQLSdKqB9TRsdbqz1Dx0Q--vc6mmPcuJ0KdF5V7JH4K24kfGdoAw/viewform
2025 batch....
Check your mailsπ£
2025 batch....
Check your mails
Please open Telegram to view this post
VIEW IN TELEGRAM
Netcoreπ // Both codes are done π±
Test accomplishedπ
OA HELP AVAILABLE:
@MRTRUELIVING_IX
@MRTRUELIVING_IX
π― TEST CLEARANCEπ
#NetCore #SD #Coding #round 1
Test accomplished
OA HELP AVAILABLE:
@MRTRUELIVING_IX
@MRTRUELIVING_IX
π― TEST CLEARANCE
#NetCore #SD #Coding #round 1
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
def solve(s):
def is_palindrome(t):
return t == t[::-1]
n, evens, odds = len(s), 0, 0
for i in range(n):
for j in range(i + 1, n + 1):
sub, k, merged = s[i:j], 0, ''
while k < len(sub):
if k + 1 < len(sub) and sub[k] == sub[k + 1]:
merged += sub[k]
k += 2
else:
merged += sub[k]
k += 1
if is_palindrome(merged):
if (j - i) % 2 == 0:
evens += 1
else:
odds += 1
return [evens, odds]
Steve substring // Airtel
Please open Telegram to view this post
VIEW IN TELEGRAM
β€2
#include <stdio.h>
#include <regex.h>
int isPowerOfTwo(const char *binaryString) {
regex_t regex;
int result;
result = regcomp(®ex, "^0*10*$", REG_EXTENDED);
if (result) {
printf("Could not compile regex\n");
return 0;
}
result = regexec(®ex, binaryString, 0, NULL, 0);
regfree(®ex);
if (!result) {
return 1;
} else {
return 0;
}
}
int main() {
int t;
char binaryString[1000];
scanf("%d", &t);
while (t--) {
scanf("%s", binaryString);
if (isPowerOfTwo(binaryString)) {
printf("True\n");
} else {
printf("False\n");
}
}
return 0;
}
Nvidia regex
Please open Telegram to view this post
VIEW IN TELEGRAM