3v4l.org

run code in 300+ PHP versions simultaneously
<?php class SudokuSolver { const NUMBERS = "123456789"; protected $sudokuColumns; public function __construct ($sudoku) { $this->sudokuColumns = $sudoku; } // could be static as well public function printOut ($sudoku) { foreach ($sudoku as $column) { foreach ($column as $cell) { echo "|"; if (null !== $cell) { echo $cell; } else { echo " "; } } echo "|\n"; } } public function solve() { $this->checkConsistenz(); } protected function checkConsistenz () { $columns = $this->sudokuColumns; // check rows -> own method $rows = array(); foreach ($columns as $columnIndex => $column) { foreach ($column as $rowIndex => $cell) { $rows[$rowIndex][$columnIndex] = (string) $cell; } //$this->printOut($rows); } foreach ($rows as $rowIndex => $row) { var_export($this->checkRow($rowIndex,$row)); } } protected function checkRow ($rowIndex, $row) { $numbers = self::NUMBERS; echo "checking $rowIndex..\n"; foreach ($row as $column) { if (null === $column) { continue; } echo "$column , $numbers\n" . var_export(strpos($numbers,$column),true); if (false === strpos($numbers,$column)) { return false; } $numbers = str_replace($col,'',$numbers); } return true; } } $sudoku = array(); $sudoku[] = array(null,3,null, null,null,null, null,null,null); $sudoku[] = array(null,null,null, 1,9,5, null,null,null); $sudoku[] = array(null,null,8, null,null,null, null,6,null); $sudoku[] = array(8,null,null, null,6,null, null,null,null); $sudoku[] = array(4,null,null, 8,null,null, null,null,1); $sudoku[] = array(null,null,null ,null,2,null, null,null,null); $sudoku[] = array(null,6,null, null,null,null, 2,8,null); $sudoku[] = array(null,null,null, 4,1,9, null,null,5); $sudoku[] = array(null,null,null, null,null,null, null,7,null); $sudokuSolver = new SudokuSolver($sudoku); //$sudokuSolver->printOut($sudoku); $sudokuSolver->solve($sudoku);
Output for git.master, git.master_jit, rfc.property-hooks
checking 0.. , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 8 , 123456789 7 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 4 , 123456789 3 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 truechecking 1.. 3 , 123456789 2 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 6 , 123456789 5 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 truechecking 2.. , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 8 , 123456789 7 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 truechecking 3.. , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 1 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 8 , 123456789 7 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 4 , 123456789 3 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 truechecking 4.. , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 9 , 123456789 8 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 6 , 123456789 5 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 2 , 123456789 1 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 1 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 truechecking 5.. , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 5 , 123456789 4 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 9 , 123456789 8 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 truechecking 6.. , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 2 , 123456789 1 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 truechecking 7.. , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 6 , 123456789 5 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 8 , 123456789 7 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 7 , 123456789 6 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 truechecking 8.. , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 1 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 5 , 123456789 4 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 , 123456789 0 Warning: Undefined variable $col in /in/VfZcF on line 64 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/VfZcF on line 64 true

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
40.36 ms | 433 KiB | 8 Q