├── .gitignore ├── README.md ├── basic-calculator ├── README.md └── test.php ├── curry ├── README.md └── test.php ├── flatten ├── README.md └── test.php ├── invert-binary-tree ├── README.md └── test.php ├── once ├── README.md └── test.php ├── reverse-linked-list ├── README.md └── test.php ├── sort-by-order ├── README.md └── test.php ├── sort ├── README.md └── test.php └── word-search ├── README.md └── test.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danrevah/php-exercises/HEAD/README.md -------------------------------------------------------------------------------- /basic-calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danrevah/php-exercises/HEAD/basic-calculator/README.md -------------------------------------------------------------------------------- /basic-calculator/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danrevah/php-exercises/HEAD/basic-calculator/test.php -------------------------------------------------------------------------------- /curry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danrevah/php-exercises/HEAD/curry/README.md -------------------------------------------------------------------------------- /curry/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danrevah/php-exercises/HEAD/curry/test.php -------------------------------------------------------------------------------- /flatten/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danrevah/php-exercises/HEAD/flatten/README.md -------------------------------------------------------------------------------- /flatten/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danrevah/php-exercises/HEAD/flatten/test.php -------------------------------------------------------------------------------- /invert-binary-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danrevah/php-exercises/HEAD/invert-binary-tree/README.md -------------------------------------------------------------------------------- /invert-binary-tree/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danrevah/php-exercises/HEAD/invert-binary-tree/test.php -------------------------------------------------------------------------------- /once/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danrevah/php-exercises/HEAD/once/README.md -------------------------------------------------------------------------------- /once/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danrevah/php-exercises/HEAD/once/test.php -------------------------------------------------------------------------------- /reverse-linked-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danrevah/php-exercises/HEAD/reverse-linked-list/README.md -------------------------------------------------------------------------------- /reverse-linked-list/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danrevah/php-exercises/HEAD/reverse-linked-list/test.php -------------------------------------------------------------------------------- /sort-by-order/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danrevah/php-exercises/HEAD/sort-by-order/README.md -------------------------------------------------------------------------------- /sort-by-order/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danrevah/php-exercises/HEAD/sort-by-order/test.php -------------------------------------------------------------------------------- /sort/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danrevah/php-exercises/HEAD/sort/README.md -------------------------------------------------------------------------------- /sort/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danrevah/php-exercises/HEAD/sort/test.php -------------------------------------------------------------------------------- /word-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danrevah/php-exercises/HEAD/word-search/README.md -------------------------------------------------------------------------------- /word-search/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danrevah/php-exercises/HEAD/word-search/test.php --------------------------------------------------------------------------------