Join Regular Classroom : Visit ClassroomTech

July 2022

Aptitude Made Easy | Problems on Numbers – codewindow.in

Various competitive examinations ask questions regularly based on Problems on Numbers. Many students face challenges in understanding and solving problems as they are not able to covert problem statements from words into equation of numbers. Let us take real life example and will try to understand concept of Problem of numbers. Real life example for […]

Aptitude Made Easy | Problems on Numbers – codewindow.in Read More »

Symmetric Difference Code

Example 1: Input: (1,2),(2,1),(3,4),(4,5),(5,4) Output: (2,1)  (5,4) Explanation: Since (1,2) and (2,1) are symmetric pairs and (4,5) and (5,4) are symmetric pairs.   Example 2: Input: (1,5),(2,3),(4,2),(5,1),(2,4) Output: (2,4)  (5,1) Explanation: Since (1,5) and (2,4) are symmetric pairs and (5,1) and (4,2) are symmetric pairs.   Solution: x=input().replace(“)”,””) x=x.replace(“(“,””) x=list(map(int, x.split(“,”))) #print(x) y = []

Symmetric Difference Code Read More »

Find Password 2 – Wipro Sample Coding Question Solved – codewindow.in

Detective Buckshee Junior has been approached by the Shantiniketan kids society for help in finding the password to the game’s complex. After hearing the scenario, detective Buckshee junior realizes that he will need a programmer’s support. He contacts you and requests your help. Please help the detective by writing a function to generate the password.

Find Password 2 – Wipro Sample Coding Question Solved – codewindow.in Read More »

Find Password 1 – Wipro Sample Coding Question Solved – codewindow.in

Detective Buckshee Junior has been approached by the Shantiniketan kids society for help in finding the password to the game’s complex. After hearing the scenario, detective Buckshee junior realizes that he will need a programmer’s support. He contacts you and requests your help. Please help the detective by writing a function to generate the password.

Find Password 1 – Wipro Sample Coding Question Solved – codewindow.in Read More »