Python1 Min Read LetuscrackonJune 8, 2024 Check if Multiple of N1 and N2 The program must accept three integers N1, N2 and N3 as the input. The program must print yes if N2 is a multiple of N1 and N3 is a multiple…
Python1 Min Read LetuscrackonJune 8, 2024 Password Check iven a word, check if it is a valid password or not. A password is said to be valid if it satisfies the following conditions: i) Should…
C Python2 Min Read LetuscrackonJune 8, 2024 Integers – Check Triplets The program must accept N integers as the input. The program must print Yes if there is at least one triplet (a, b, c) in the given N integers…
C Python1 Min Read LetuscrackonJune 7, 2024 Check Sorted Array – Descending Order The program must accept N integer values and check if they are sorted in descending order or not. Input : 5834 700 53 45 12 Output : yes Here…