Row and column searching routines¶
-
Problem.find_row(str name)¶ Find row by its name
Parameters: name ( str) – the name of the rowReturns: the row index Return type: int
-
Problem.find_row_as_needed(row)¶ Parameters: row ( intorstr) – the index or name of the rowReturns: the row index Return type: int
-
Problem.find_col(str name)¶ Find column by its name
Parameters: name ( str) – the name of the columnReturns: the column index Return type: int
-
Problem.find_col_as_needed(col)¶ Parameters: col ( intorstr) – the index or name of the columnReturns: the column index Return type: int
-
Problem.find_row_or_col_as_needed(ind)¶