This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// https://www.reddit.com/r/dailyprogrammer/comments/6i60lr/20170619_challenge_320_easy_spiral_ascension/ | |
/** | |
* @param array $arguments | |
* @return int | |
*/ | |
function check_args_and_get_number(array $arguments) | |
{ | |
$parameter_name = 'n'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
.wrapper { | |
max-width: 200px; | |
border-right: 1px solid green; | |
padding-right: 10px; | |
} | |