Python1 Min Read LetuscrackonJune 11, 2024 Divisible Sum Pair Count N numbers (A0, A1, A2, …, AN-1) are passed as input to the program. A positive integer D is also passed as input to the program.The…
C Java Python2 Min Read LetuscrackonJune 10, 2024 Swap Even Integers Pair The program must accept N integers as the input. The program swap every two even integers among the N integers. Then the program…
C1 Min Read LetuscrackonJune 10, 2024 Five Numbers – Number without Pair Five numbers a,b,c,d,e are passed as input to the program. Among these 5 numbers, 2 pairs are present and one is without pair. Print that…
Python1 Min Read LetuscrackonJune 7, 2024 Number without Pair using Bitwise Operators The program must accept a list of integers as the input. Among these integers, N/2 pairs (two integers having the same value) are…