๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.63K subscribers
5.61K photos
3 videos
95 files
10.6K links
๐ŸšฉMain Group - @SuperExams
๐Ÿ“Job Updates - @FresherEarth

๐Ÿ”ฐAuthentic Coding Solutions(with Outputs)
โš ๏ธDaily Job Updates
โš ๏ธHackathon Updates & Solutions

Buy ads: https://telega.io/c/cs_algo
Download Telegram
MCQ KYT

1q)sass
Softwares as a service
A
2q)navigational
A
True
3q) drawback
D
Cost of computing
4q) cloud service are
B.
True.
5q)the paradgism
C
Progessive

SQL

1)in a sql primary
A
True
2)from player where
A
Whose 2nd letter
3)the agreegate function
A
True
4)name like v per t
Ends with t
B
5)order by age runs
A
Then on runs
๐Ÿ‘1
Remove things that don't ๐‚๐Ž๐๐“๐‘๐ˆ๐๐”๐“๐„ to your ๐†๐‘๐Ž๐–๐“๐‡๐Ÿ˜Šโค๏ธ

# A motivational quote to start your day with ๐Ÿ˜Š
โค2
As placement for 2023 batch is coming, so what u guys want from me....

Like resume review, mock interview, interview experience or any other thing which you guys want, feel free to tell in comment, I will try to help till what I can ๐Ÿ˜Šโœ…
https://practice.geeksforgeeks.org/problems/rat-in-a-maze-problem/1

โœ…โœ…โœ…โœ…โœ…โœ…โœ…โœ…โœ…โœ…โœ…
javascript sol using recursion

Code
_------------------------------------
let solve =(m,n,c,res,i,j)=>{
//base case

if (i==n-1 && j==n-1){
res.push(c);
return ;
}
let val = m[i][j]
m[i][j]=-1

// right
if (j+1<n && m[i][j+1]==1){
solve(m,n,c+"R",res,i,j+1);
}

// down
if (i+1<n && m[i+1][j]==1){
solve(m,n,c+"D",res,i+1,j);
}

// up
if (i-1>=0 && m[i-1][j]==1){
solve(m,n,c+"U",res,i-1,j);
}

//left

if (j-1>=0 && m[i][j-1]==1){
solve(m,n,c+"L",res,i,j-1);
}
m[i][j]=val;
}

class Solution {
findPath(m,n){
//code here
let c="";
let res=[];
let i=0,j=0;
if (m[0][0]==0){
return res;
}
solve(m,n,c,res,i,j);
res.sort();
return res;
}
}
๐Ÿ‘3