Skip to content

Instantly share code, notes, and snippets.

View Arman-Hosseini's full-sized avatar
🎩

Arman Hosseini Arman-Hosseini

🎩
  • Germany
View GitHub Profile
@Arman-Hosseini
Arman-Hosseini / maze_recursive.php
Created May 10, 2021 22:27
Maze problem | Maze algorithm | Backtracking | Recursive | مسئله ماز | مسئله هزارتو | بازگشتی | مسئله مارپیچ |بک ترک
<?php
/**
* @author Arman Hosseini <namra.1377@gmail.com>
*/
?>
<style type="text/css">
* {
margin: 0;
padding: 0;
}
@Arman-Hosseini
Arman-Hosseini / n_queens_problem_recursive.php
Last active May 10, 2021 22:23
n queens problem | eight queens puzzle | recursive | مسئله ۸ وزیر | بازگشتی
<?php
/**
* @author Arman Hosseini <namra.1377@gmail.com>
*/
?>
<style type="text/css">
* {
margin: 0;
padding: 0;
}