Few code standards. Remove composer vendor folder

This commit is contained in:
2025-04-04 12:26:47 +00:00
parent ed83a3afc3
commit 4dd1683e1a
24 changed files with 69 additions and 1152 deletions

View File

@ -1,6 +1,6 @@
<?php
//Find a three-digit number such that when the digits are reversed and subtracted from the original number, the result is a multiple of 9.
function numreverse($number) {
function numreverse(int $number): int {
$numberStr = (string)$number;
$numberStr = strrev($numberStr);