๐๐ Giveaway Time ๐๐
๐What will you get in this giveaway?
๐When is our Giveaway?
๐What will you get in this giveaway?
30 X StupidTechy.Me VIP Membership Accounts
๐How to participate in the giveaway?Make sure that you have an account on StuipdTechy.
You have to invite your friends/classmates to our group (
@sup777exams).
โ
Winner will be selected Randomly.๐When is our Giveaway?
A giveaway will happen when we reach 4k members in our group.
๐งIf you have any query related to Giveaway... Ping my Bot ๐โ๐จ @sup777exams_bot๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ pinned ยซ๐๐ Giveaway Time ๐๐ ๐What will you get in this giveaway? 30 X StupidTechy.Me VIP Membership Accounts ๐How to participate in the giveaway? Make sure that you have an account on StuipdTechy. You have to invite your friends/classmates to our group (@sup777exams).โฆยป
String And Queries
Python 3
โ โ โ โ
Python 3
โ โ โ โ
โ
โ
Break the Palindrome
class Solution {
public String breakPalindrome(String palindrome) {
// If empty or of length 1 => return empty
if (palindrome.length() <= 1) {
return "";
}
char[] chars = palindrome.toCharArray();
for (int i = 0; i < chars.length; i++) {
if (chars[i] != 'a') {
// Skip if the string is of odd length and it is the middle index
if (palindrome.length() % 2 != 0 && i == palindrome.length() / 2) {
continue;
}
chars[i] = 'a';
break;
}
// If all chars all 'a' update last char to 'b'
if (i == chars.length - 1) {
chars[i] = 'b';
}
}
return String.valueOf(chars);
}
}
class Solution {
public String breakPalindrome(String palindrome) {
// If empty or of length 1 => return empty
if (palindrome.length() <= 1) {
return "";
}
char[] chars = palindrome.toCharArray();
for (int i = 0; i < chars.length; i++) {
if (chars[i] != 'a') {
// Skip if the string is of odd length and it is the middle index
if (palindrome.length() % 2 != 0 && i == palindrome.length() / 2) {
continue;
}
chars[i] = 'a';
break;
}
// If all chars all 'a' update last char to 'b'
if (i == chars.length - 1) {
chars[i] = 'b';
}
}
return String.valueOf(chars);
}
}
๐1
Tech Mahindra
Pattern
Round 1
Aptitude 75ques 142 mins
English essay 1Q 15 mins
Tech test 26ques 65 mins
(1 coding + 25 mcq)
Pattern
Round 1
Aptitude 75ques 142 mins
English essay 1Q 15 mins
Tech test 26ques 65 mins
(1 coding + 25 mcq)
๐ IBM Off Campus Drive 2021: Associate System Engineer | Freshers | BE/ B.Tech/ ME/ M.Tech/ MCA | PAN India
* Job Role : Associate System Engineer
* Experience : Freshers (2019 โ 2021 Batch)
* Salary : 4-6.5 LPA
https://fresherearth.blogspot.com/2021/08/IBM-Off-Campus-Drive-2021-Associate-System-Engineer-Freshers-BE-B.Tech-ME-M.Tech-MCA-Bangalore.html
* Job Role : Associate System Engineer
* Experience : Freshers (2019 โ 2021 Batch)
* Salary : 4-6.5 LPA
https://fresherearth.blogspot.com/2021/08/IBM-Off-Campus-Drive-2021-Associate-System-Engineer-Freshers-BE-B.Tech-ME-M.Tech-MCA-Bangalore.html
FresherEarth - Get All Latest Jobs Here
IBM Off Campus Drive 2021: Associate System Engineer | Freshers | BE/ B.Tech/ ME/ M.Tech/ MCA | Bangalore
fresher jobs, freshers jobs, off campus jobs, latest fresher jobs, fresher jobs bangalore, fresher jobs hyderabad, latest walk in drive
โ
โ
โ
#HackerEarth - SubArray Count...
Forwarded from ๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ (Sanket Kumar)
โ
โ
Duplicated Products - MapIt (MyAnatomy) Python Solution - Replicon Test Code
https://stupidtechy.me/threads/duplicated-products-mapit-myanatomy-python-solution-replicon-test-code.117/
https://stupidtechy.me/threads/duplicated-products-mapit-myanatomy-python-solution-replicon-test-code.117/
Forwarded from ๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ (Sanket Kumar)
โ
โ
Circular Printer - MapIt (MyAnatomy) Python Solution - Replicon Test Code
https://stupidtechy.me/threads/circular-printer-mapit-myanatomy-python-solution-replicon-test-code.116/
https://stupidtechy.me/threads/circular-printer-mapit-myanatomy-python-solution-replicon-test-code.116/
Forwarded from ๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ (S S)
Now correct
That time I just checked one test case๐
Very cool number
That time I just checked one test case๐
Very cool number
Forwarded from Uber | IBM | Accenture | TCS | Wipro | Cognizant | Capgemini | Amazon | Exam Group | Discussion Group - SuperExams (โขโข||Sanket||โขโข)
โ
โ
โ
Mettl - Find Largest Small Difference - Tech Mahindra code
Forwarded from Uber | IBM | Accenture | TCS | Wipro | Cognizant | Capgemini | Amazon | Exam Group | Discussion Group - SuperExams (โขโข||Sanket||โขโข)
โ
โ
โ
Mettl - Find odd even difference (c++) - Tech Mahindra Code
โ
โ
โ
Mettl - Large Small Difference - Tech Mahindra Exam
def LargeSmallDifference(data):
l = data[0]
s = data[0]
for num in data:
if num> l:
l = num
elif num< s:
s = num
return l, s
print(LargeSmallDifference([0, 10, 15, 40, -5, 42, 17, 28, 75]))
def LargeSmallDifference(data):
l = data[0]
s = data[0]
for num in data:
if num> l:
l = num
elif num< s:
s = num
return l, s
print(LargeSmallDifference([0, 10, 15, 40, -5, 42, 17, 28, 75]))