Successfully cleared Accenture ONCAMPUS β
R1-r3:
https://t.me/Code_alphix/8576?single
#Accenture #ONCAMPUS #drive
Accolite || Software Engineer test β
Test accomplished β€οΈ. @Mrtrueliving_ix
For all Placement help
@Mrtrueliving_ix @Mrtrueliving_ix
Accenture ONCAMPUS drive Help Available
π₯ One-Time Opportunity! π₯
Share with your friends who need Test Clearance β
>> Own laptop β
>> Lab system β
@Mrtrueliving_ix @Mrtrueliving_ix β
π₯ One-Time Opportunity! π₯
Share with your friends who need Test Clearance β
>> Own laptop β
>> Lab system β
@Mrtrueliving_ix @Mrtrueliving_ix β
TCS codevita Help Available π―
@Mrtrueliving_ix @Mrtrueliving_ix
Only accepted coding available
https://t.me/Code_alphix/8255
https://t.me/Code_alphix/8264
https://t.me/Code_alphix/8265
@Mrtrueliving_ix @Mrtrueliving_ix
Only accepted coding available
https://t.me/Code_alphix/8255
https://t.me/Code_alphix/8264
https://t.me/Code_alphix/8265
Uber is hiring
Position: Software Engineer, Data
Qualification: Bachelor's Degree
Experiencο»Ώe: Freshers/ Experienced
Location: Hyderabad, India
πApply Now: https://www.uber.com/global/en/careers/list/147689/?uclick_id=c4b8c412-d7bf-4990-805b-c1ed8619397f
Position: Software Engineer, Data
Qualification: Bachelor's Degree
Experiencο»Ώe: Freshers/ Experienced
Location: Hyderabad, India
πApply Now: https://www.uber.com/global/en/careers/list/147689/?uclick_id=c4b8c412-d7bf-4990-805b-c1ed8619397f
π Accenture ONCAMPUS | Slot-1 | 12 PM β
π« Round 1 β Cleared π―
β‘ Round 2 β Cleared π―
π Round 3 β Cleared π
π Mission Accomplished | ONCAMPUS Drive Success π
> Hard work opens doors. Consistency keeps them open. β¨
πΌ Grateful for the journey and guidance throughout!
π© DM for Placement Insights & Strategy Support π‘
@Mrtrueliving_ix @Mrtrueliving_ix
@Mrtrueliving_09 @Mrtrueliving_09
#Accenture #OnCampus #Success #PlacementDrive #HardWorkPaysOff #CareerGoals #R1 #R2 #R3 #DreamAchieved
π Accenture ONCAMPUS β12 PMβ
Slot - 2 || Cleared β
π₯ Round 1 β Cleared π―
β‘ Round 2 β Cleared π―
π Round 3 β Cleared π
π« Test Accomplished | ONCAMPUS π
@Mrtrueliving_ix @Mrtrueliving_ix
>Discipline, patience, and perseverance turn dreams into reality.
π© DM for Placement Tips & Strategy Supportπ
@Mrtrueliving_ix @Mrtrueliving_ix
#Accenture #OnCampus #PlacementSuccess #CareerJourney #HardWorkPaysOff #R1 #R2 #R3 #Victory
Ukg || customer experience intern β
DM for any placement Help
@Mrtrueliving_ix @Mrtrueliving_ix
#Ukg #ONCAMPUS #R1
Forwarded from COGNIZANT EXAM HELP GROUP
TCS codevita Help Available π―
@Mrtrueliving_ix @Mrtrueliving_ix
Only accepted coding available
https://t.me/Code_alphix/8255
https://t.me/Code_alphix/8264
https://t.me/Code_alphix/8265
@Mrtrueliving_ix @Mrtrueliving_ix
Only accepted coding available
https://t.me/Code_alphix/8255
https://t.me/Code_alphix/8264
https://t.me/Code_alphix/8265
Successfully cleared Accenture ONCAMPUS β>
Now they are eligible for communication β
DM for any placement Help available
On // Offcampus β
Computer Lab or own laptop β
@Mrtrueliving_ix @Mrtrueliving_ix
S1:https://t.me/Code_alphix/8587?single
S2:https://t.me/Code_alphix/8585?single
IBM CIC Help Available
@Mrtrueliving_ix @Mrtrueliving_ix
π― Test Clearance β€οΈ
https://t.me/Code_alphix/8555?single
@Mrtrueliving_ix @Mrtrueliving_ix
π― Test Clearance β€οΈ
https://t.me/Code_alphix/8555?single
TCS Coding Questions Available Now! π
π₯ Problems Covered:
β Rishikbox
β Shapecount
β Smallest Region
π― Plag-Free Solutions β Tested & Verified!
π’ Check our page β weβll be posting the full codes soon!
π https://t.me/Code_alphix
Add your friends
Helpthemtosucceed β€οΈ
π₯ Problems Covered:
β Rishikbox
β Shapecount
β Smallest Region
π― Plag-Free Solutions β Tested & Verified!
π’ Check our page β weβll be posting the full codes soon!
π https://t.me/Code_alphix
Add your friends
Helpthemtosucceed β€οΈ
import java.util.*;
public class RasikhBox {
static void gravity(char[][] g) {
int r = g.length, c = g[0].length;
for (int col = 0; col < c; col++) {
int cnt = 0;
for (int row = 0; row < r; row++)
if (g[row][col] == '*') cnt++;
for (int row = 0; row < r - cnt; row++) g[row][col] = '.';
for (int row = r - cnt; row < r; row++) g[row][col] = '*';
}
}
static char[][] rightR(char[][] g) {
int r = g.length, c = g[0].length;
char[][] res = new char[c][r];
for (int i = 0; i < c; i++)
for (int j = 0; j < r; j++)
res[i][j] = g[r - 1 - j][i];
return res;
}
static char[][] leftR(char[][] g) {
int r = g.length, c = g[0].length;
char[][] res = new char[c][r];
for (int i = 0; i < c; i++)
for (int j = 0; j < r; j++)
res[i][j] = g[j][c - 1 - i];
return res;
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int m = sc.nextInt(), n = sc.nextInt();
char[][] box = new char[m][n];
for (int i = 0; i < m; i++)
for (int j = 0; j < n; j++)
box[i][j] = sc.next().charAt(0);
int k = sc.nextInt();
String[] ops = new String[k];
for (int i = 0; i < k; i++) ops[i] = sc.next();
gravity(box);
for (String op : ops) {
if (op.equals("right")) box = rightR(box);
else box = leftR(box);
gravity(box);
}
int R = box.length, C = box[0].length;
for (int i = 0; i < R; i++) {
for (int j = 0; j < C; j++) {
System.out.print(box[i][j]);
if (j + 1 < C) System.out.print(" ");
}
if (i + 1 < R) System.out.println();
}
sc.close();
}
}
Rishikbox β TCS codevita β
@Mrtrueliving_ix @Mrtrueliving_ix
π― Plagfree β
Stay tuned for more more codes
https://t.me/Code_alphix
Review β’ : https://t.me/Code_alphix/8595
β€2