Java Hyd Team
746 subscribers
986 photos
39 videos
670 files
690 links
https://teamhydteam.my.canva.site/

Can visit us on our website ๐Ÿ˜Š
Still working on it ๐Ÿ˜Š
Download Telegram
You can now connect with us on linkedin we will soon list our connections for better opportunity
will update the video by late night today complete exception handling end to end
https://www.youtube.com/channel/UC-tiNJLxqiix-yswWo65cRw


Will share the video on this channel so you can visit and will not miss the recording too
On the way to complete PPT for concept and in video we will go through some basic to advanced level of conceptual code also
Will make video today
Java Hyd Team
Next Sunday again we will be covering core java, advance java, Spring and spring boot , React-Js
Not conducted as one interview scheduled from trilogy innovations

It will be till 2pm so didn't started as full day packed after this will prepare video n upload for exception handling ๐Ÿ˜Š
If it's done ๐Ÿ”ฅ
till then solve this question If we list all the natural numbers below 10that are multiples of 3 or5 , we get 3,5,6 and9 . The sum of these multiples is .23

Find the sum of all the multiples of 3 or5 below .

Input Format

First line contains that denotes the number of test cases. This is followed by lines, each containing an integer, .

Constraints

Output Format

For each test case, print an integer that denotes the sum of all the multiples of 3 or 5 below N .
find the same for natural number range 100 expected o/p 2318
Hope you solved the above question The level was easy
Mind blown after their programming questions literally headache after the level of question
2 completed 2 flagged
Forwarded from Aman Raj
There are 2xN comedians and M audience member in a comedy show. The first N comedians are male and the last N are female. In a comedy show, all the comics gets one slot to perform their act. The slots are alloted randomly and any allocation is equaly probable.

$1

Each of the comdedians has a humour level given by the array A. The charge of each comedian is given by the array B.

Q

Each of the audience member has a tolerance level given by array C and seriousness level given by array D. The gender of the members given by the array E where E[i] = 1 denotes that member is male and E[i] = 2 denotes that member is female.

Q2

A comic of same gender as an audience member will make that member laugh if there have been atleast c[i] comics before them of the same gender such that their humour level is more than D[i] of that member.

Q3

A comic of opposite gender as an audience member will make that member laugh if there have been atleast C[i] comics before them of the same gender of the comic such that their humour level is more than the 2xD[i] of that member.

Q4

BLIC

ER

If a member laughs, then they have to pay that comedian B[i] coins

What is the expected sum of amount that all the comedians will earn in a single show. Express the expected sum

as an irreducible fraction u/v, then you have to find the value of uxvยน mod 10"+7.

Problem Constraints

1 <= N<= 105

1 <= M <= 105

1 <= A[i] <= 109

1 <= B[i] <= 109

1 <= C[i] <= N
Forwarded from Aman Raj
Longest Odd Pallindromes

Flag Question

Problem Description

Given a string $(consisting of only lower case characters) and Q queries.

In each query you will given an integer i and your task is to find the length of longest odd palindromic substring whose middle index is i.

Q 2

Note:

1) Assume 1 based indexing.

Q3

2.) Longest odd palindrome: A palindrome substring whose length is odd.

Q4

Problem Constraints

Input Format

First argument A is string S.

Second argument B is an array of integers where Bi] denotes the query index of ith query.

BLIC

ER