Google-Developer-Student-Club-CCOEW / Competitive-Programming-2023-GDSC-CUMMINS-X-GDSC-MMCOE

Welcome to the Hacktoberfest 2023 Competitive-Programming Cohort for Cummins College and MMCOE students! To request issue assignment, create a pull request, providing: 1. Full Name πŸ§‘β€πŸŽ“ 2.Email πŸ“§ 3.College ID (RNO) πŸ”’ 4.Branch of Study.πŸ“š 5. Year πŸ“† .The Cummins College and MMCOE students' PRs will be considered only. Thank you!
9 stars 69 forks source link

The K Weakest Rows in a Matrix #100

Open Sonia312 opened 1 year ago

Sonia312 commented 1 year ago

Write code in the preferred language and attach output with it.

You are given an m x n binary matrix mat of 1's (representing soldiers) and 0's (representing civilians). The soldiers are positioned in front of the civilians. That is, all the 1's will appear to the left of all the 0's in each row.

A row i is weaker than a row j if one of the following is true:

The number of soldiers in row i is less than the number of soldiers in row j. Both rows have the same number of soldiers and i < j. Return the indices of the k weakest rows in the matrix ordered from weakest to strongest.

Example 1:

Input: mat = [[1,1,0,0,0], [1,1,1,1,0], [1,0,0,0,0], [1,1,0,0,0], [1,1,1,1,1]], k = 3 Output: [2,0,3] Explanation: The number of soldiers in each row is:

Example 2:

Input: mat = [[1,0,0,0], [1,1,1,1], [1,0,0,0], [1,0,0,0]], k = 2 Output: [0,2] Explanation: The number of soldiers in each row is:

kittoteja commented 1 year ago

can I solve it ??

Swetathakare commented 11 months ago

Could you assign this issue to me ? Name :Sweta Thakare Roll no :UCE2022654 e.mail :[ sweta.thakare@cumminscollege.in ]

Eesha04 commented 11 months ago

Name : Eesha Satvalekar email : eesha.satvalekar@cumminscollege.in Please assign this issue to me. I would like to solve it.