Get Mystery Box with random crypto!

CODING SOLUTION - Placement Jobs & Materials

Logo of telegram channel codingsolution_it — CODING SOLUTION - Placement Jobs & Materials C
Logo of telegram channel codingsolution_it — CODING SOLUTION - Placement Jobs & Materials
Channel address: @codingsolution_it
Categories: Technologies
Language: English
Subscribers: 198.90K
Description from channel

🌀 ” Our Only Aim Is To Let Get Placed To You In A Reputed Company. “
Contact Admin:
instagram.com/offcampusjobsindia_it

Ratings & Reviews

4.00

3 reviews

Reviews can be left only by registered users. All reviews are moderated by admins.

5 stars

2

4 stars

0

3 stars

0

2 stars

1

1 stars

0


The latest Messages 53

2022-06-19 08:13:18
Python
Telegram - t.me/codingsolution_IT
11.8K views05:13
Open / Comment
2022-06-19 07:58:50
s = input()
s1=s[::-1]
If(s == s1) :
print ("True")
else:
print ("False")

Python
Telegram - t.me/codingsolution_IT
11.0K views04:58
Open / Comment
2022-06-19 07:57:17 def countPalin(str):
count = 0

# splitting each word as spaces as
# delimiter and storing it into a list
listOfWords = str.split(" ")

# Iterating every element from list
# and checking if it is a palindrome.
for elements in listOfWords:
if (checkPalin(elements)):

# if the word is a palindrome
# increment the count.
count += 1
print (count)

# Driver code
countPalin("Madam Arora teaches malayalam")
countPalin("Nitin speaks malayalam")

Python
Palindrome count
Telegram - t.me/codingsolution_IT
8.5K views04:57
Open / Comment
2022-06-19 07:42:49 Christmas Eve code in java :


public class Example2 {

// this will be the solution
static int solutionCount = 0;



public static void canCollect(int remainingAmount, int remainingHouses, int previousAmount) {

if (remainingHouses == 0)
return;

if (remainingAmount < 0)
return;

if (remainingAmount == 0) {
solutionCount++;
return;
}

for (int i = 1; i < previousAmount; i++) {
//deduct amount collected from this house-visit (i), deduct 1 from remaining houses, and set previousAmount to what you are collecting here
canCollect(remainingAmount - i, remainingHouses - 1, i);
}

}


// This is your solution function, although you'll need to change it enough to satisfy test-cases.
public static int solutionFunction(int x, int y) {
for (int i = 0; i <= x; i++) {
canCollect(x - i, y-1, i);
}
return solutionCount;
}


//main is just to execute it here. Omit it in your submission
public static void main(String args[]) {
System.out.println(solutionFunction(5,5)); //3
}

}

Java
Christmas Eve
Telegram - t.me/codingsolution_IT
8.6K views04:42
Open / Comment
2022-06-19 07:28:23
Java
Reverse String Word Wise
Telegram - t.me/codingsolution_IT
7.9K viewsedited  04:28
Open / Comment
2022-06-19 07:22:53
import java.util.*;
class MorseCodeChecker{
public int decreeCompliant(int input1, String[] input2){
int result = 0;

for(int i = 0 ; i < input2.length; i++){
Deque stack = new ArrayDeque<>();
if(input2[i] == null || input2[i].length() == 0){
continue;
}
String cur = input2[i];

if(cur.charAt(0) != '.' && cur.charAt(cur.length()-1) != '-'){
break;
}
int j = 0;
while(j < cur.length()){

if((cur.charAt(j) == '.')){

while(j < cur.length() && cur.charAt(j) == '.'){
j++;
stack.push('.');
}
}
else{
if(stack.size() == 0){
break;
}
stack.pop();
j++;
}
}
if(j == cur.length() && stack.size() == 0){
result++;
}
}
return result;
}
}

Java
Telegram - t.me/codingsolution_IT
9.3K views04:22
Open / Comment
2022-06-19 07:17:08 str1 = input()
str2 = input ()
vowels = 'aeiou'
c1 = c2 = 0
for ch in str1:
if ch in vowels:
c1 += 1
for ch in str2:
if ch in vowels:
c2 += 1
//allcoding1
print(min(c1,c2))

input2[-1] +=1
ans = input2[::-1]
i=0
while i<= input1:
if ans[i]>=9:
ans[i+1]+=1
i+=1
else:
print(input1-i)
break

Python
LCS With Vowels Code
Telegram - t.me/codingsolution_IT
10.9K views04:17
Open / Comment
2022-06-19 05:36:26 VIRTUSA & ZOHO EXAM SOLUTION GROUP:

t.me/codingsolution_IT

t.me/zoho_exam_virtusa_exam_group

Share post in ur college Whatsapp grps.
710 views02:36
Open / Comment
2022-06-17 20:57:18 ALL SLOTS SOLUTION GROUP:

VIRTUSA - t.me/virtusa_exam_discusion_group

MOUNTBLUE & ZOHO - t.me/mountblue_exam_zoho_exam

t.me/codingsolution_IT

Share post in ur college Whatsapp grps.
2.3K views17:57
Open / Comment
2022-06-16 21:27:31 VIRTUSA EXAM SOLUTION GROUP:

t.me/codingsolution_IT

t.me/virtusa_exam_discusion_group

Share post in ur college Whatsapp grps.
3.2K views18:27
Open / Comment