We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
deftwoPluses(grid):n=len(grid)m=len(grid[0])# getting the list of coordinates of all good cellsgoodcells=[(r,c)forrinrange(n)forcinrange(m)ifgrid[r][c]=='G']# initialize the list of crosses of single cellspluses=[{cell}forcellingoodcells]# finding the larger crossesforr,cingoodcells:if0<r<nand0<c<m:foriinrange(1,min(r,c,n-r-1,m-c-1)+1):four_cells=[(r+i,c),(r-i,c),(r,c-i),(r,c+i)]ifall(cellingoodcellsforcellinfour_cells):h_line=set((r,x)forxinrange(c-i,c+i+1))v_line=set((y,c)foryinrange(r-i,r+i+1))pluses.append(h_line|v_line)else:breakpluses=sorted(pluses,key=len,reverse=True)max_2=0whilelen(pluses)>1:plus_a=pluses.pop(0)forplus_binpluses:ifplus_a.isdisjoint(plus_b):max_2=max(max_2,len(plus_a)*len(plus_b))breakreturnmax_2
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Join us
Create a HackerRank account
Be part of a 26 million-strong community of developers
Please signup or login in order to view this challenge
Ema's Supercomputer
You are viewing a single comment's thread. Return to all comments →
An alternative Python solution: