Skip to content

Instantly share code, notes, and snippets.

View MohammedAttya2's full-sized avatar
:octocat:

Mohammed Attya MohammedAttya2

:octocat:
View GitHub Profile
<?php
/**
* Collapse an array of arrays into a single array.
*
* @param array $array
* @return array
*/
public static function collapse($array)
{
@MohammedAttya2
MohammedAttya2 / RomanNumeralConverter.php
Created July 16, 2017 18:06
Convert numbers to Roman Numbers
<?php
/**
* Mohammed Attya
* RomanNumeralConverter
* MIT Licence
* run using WAMP / XAMPP / LAMP / MAMP or just php RomanNumeralConverter.php in terminal
* make sure to install php first
*/