कठिन स्तर पर संक्रमण संबंध जांचते समय सबसे अच्छा लिखित तरीका कौन सा है?
At hard level, what is the best written method to check a transitive relation?
Explanation opens after your attempt
A. हर दूसरे घटक से शुरू होने वाली जोड़ियों को समूह बनाकर जांचनाGroup pairs by their second component and check matching starts
Concept
संक्रमण में ((a,b)) के बाद ऐसी जोड़ी चाहिए जिसकी शुरुआत (b) से हो। / In transitivity, after ((a,b)), we need a pair starting with (b).
Why this answer is correct
इसलिए दूसरे घटक के आधार पर समूह बनाने से सारी श्रृंखलाएं जल्दी मिलती हैं। / Grouping by the second component helps find all chains quickly.
Exam Tip
सूची लंबी हो तो यह विधि गलती कम करती है। / For long lists, this method reduces mistakes.
Login to save your score, XP, coins and progress.
