EN https://www.nytimes.com/games/wordle/index.html
SP https://wordle.danielfrg.com/
IT https://pietroppeter.github.io/wordle-it/
FR https://wordle.louan.me/
** https://wordlegame.org
Multiplayer de los pobres https://wordplay.com/
EN https://www.nytimes.com/games/wordle/index.html
SP https://wordle.danielfrg.com/
IT https://pietroppeter.github.io/wordle-it/
FR https://wordle.louan.me/
** https://wordlegame.org
Multiplayer de los pobres https://wordplay.com/
| # part 1 | |
| awk ' | |
| /forward/ { x += $2 } | |
| /up/ {y-=$2} | |
| /down/ {y+=$2} | |
| END {print x*y} | |
| ' input.txt | |
| # part 2 | |
| awk ' | |
| /forward/ {x+=$2;y+=$2*aim} |
| var widget = function(e) { | |
| function t(r) { | |
| if (n[r]) return n[r].exports; | |
| var o = n[r] = { | |
| i: r, | |
| l: !1, | |
| exports: {} | |
| }; | |
| return e[r].call(o.exports, o, o.exports, t), o.l = !0, o.exports | |
| } |
| <? | |
| final class SocialNetworkProfile { | |
| private $userName; | |
| private $friends; // friends is a reference to a large collection | |
| private $feed; // feed references the whole user feed | |
| public __construct($userName , $friends, UserFeed $feed) { | |
| $this->assertUsernameIsValid($userName); |
| <? | |
| function processBatch(bool $useLogin, bool $deleteEntries, bool $beforeToday ){ | |
| /... | |
| } |
| function primeFactors(n){ | |
| var f = [], i = 0, d = 2; | |
| for (i = 0; n >= 2; ) { | |
| if(n % d == 0){ | |
| f[i++]=(d); | |
| n /= d; | |
| } | |
| else{ | |
| d++; |
| let cuca = "Racha"; |
| function primeFactors(numberToFactor) { | |
| var factors = [], | |
| divisor = 2, | |
| remainder = numberToFactor; | |
| while (remainder >= 2) { | |
| if (remainder % divisor === 0) { | |
| factors.push(divisor); | |
| remainder = remainder / divisor; | |
| } |
| <?php | |
| abstract class Pais { | |
| const ARGENTINA = 'Argentina'; | |
| const URUGUAY = 'Uruguay'; | |
| static private $values = []; | |
| static function init() { | |
| $refle = new ReflectionClass(__CLASS__); |
| <?php | |
| // pais.php | |
| class Pais { | |
| private function __construct() {} | |
| static private $instance; | |
| static function register() { | |
| assert(self::$instance, 'Uninitialized Pais enum'); | |
| $name = get_called_class(); |