Escribir una función que reciba dos números enteros positivos y retorne su suma invertida.
Ayuda un int se puede pasar a string y viceversa
Ejemplo, si recibe (123,456) (123+456=579), Retornaría 975. OJO retorna un ENTERO
| ! XTerm resources | |
| ! | |
| ! Remember to run `xrdb < .Xresources` after changing anything. | |
| ! | |
| ! Tavis Ormandy <taviso@gmail.com> | |
| ! Set the default UI font (menus, toolbar, etc) | |
| XTerm*XftFont: Segoe UI:size=10:antialias=true:style=Regular | |
| ! Color of UI Components |
| import random | |
| # Simula una app de apuestas trucha | |
| saldo = 100 # plata que tiene el jugador | |
| premio_grande = 1000 | |
| def jugar(): | |
| # El jugador apuesta 10 pesos por partida | |
| global saldo |
| Installing 33/58 libjxl:arm64-osx@0.10.2... | |
| Building libjxl:arm64-osx@0.10.2... | |
| /Users/nicolasmd/wokr/ladybird-source/Meta/CMake/vcpkg/release-triplets/arm64-osx.cmake: info: loaded overlay triplet from here | |
| /Users/nicolasmd/wokr/ladybird-source/Toolchain/Tarballs/vcpkg/buildtrees/versioning_/versions/libjxl/4a0c70d1ff8967afd670855a24154ccb04321de1: info: installing overlay port from here | |
| -- Using cached libjxl-libjxl-v0.10.2.tar.gz. | |
| -- Cleaning sources at /Users/nicolasmd/wokr/ladybird-source/Toolchain/Tarballs/vcpkg/buildtrees/libjxl/src/v0.10.2-fef900ea4e.clean. Use --editable to skip cleaning for the packages you specify. | |
| -- Extracting source /Users/nicolasmd/wokr/ladybird-source/Toolchain/Tarballs/vcpkg/downloads/libjxl-libjxl-v0.10.2.tar.gz | |
| -- Applying patch fix-dependencies.patch | |
| -- Applying patch fix-tools-build.patch | |
| -- Using source at /Users/nicolasmd/wokr/ladybird-source/Toolchain/Tarballs/vcpkg/buildtrees/libjxl/src/v0.10.2-fef900ea4e.clean |
| first_name | last_name | email_address | zipcode | |
|---|---|---|---|---|
| John | Doe | john.doe@example.com | 12345 | |
| Jane | Smith | jane.smith@example.com | 67890 | |
| Alice | Johnson | alice.johnson@example.com | 11223 | |
| Bob | White | bob.white@example.com | 44556 |
| <?php | |
| // $ php -S 127.0.0.1:9001 | |
| header('Content-Type: application/json'); | |
| header('Access-Control-Allow-Origin: http://localhost:5173'); // CORS | |
| header('Access-Control-Allow-Methods: POST, OPTIONS'); | |
| header('Access-Control-Allow-Headers: Content-Type'); | |
| if ($_SERVER['REQUEST_METHOD'] === 'OPTIONS') { |
| class Humano { | |
| constructor(n) { | |
| this.nombre = n; | |
| } | |
| saludar() { | |
| return `Hola, soy ${this.nombre}`; | |
| } | |
| } | |
| const human = new Humano('Tomás'); |
| // Borrowing allows you to reference data without taking | |
| // ownership of it. This can be useful when you have a large data | |
| // structure and you don't want to copy it, or when you want to | |
| // allow multiple parts of your code to access the same data. | |
| fn main() { | |
| let s1 = String::from("hello"); | |
| let len = calculate_length(&s1); // s1 is borrowed by the function | |
| println!("The length of '{}' is {}.", s1, len); |
| pacman -S --needed xorg sddm i3 i3-wm i3lock i3status feh dmenu rofi firefox kitty the_silver_searcher vim htop ttf-fira-mono ttf-hack ttf-joypixels ttf-ubuntu-font-family | |
| yay -y i3blocks i3-gaps | |
| systemctl enable sddm | |
| cat ~/.config/i3/config | |
| mkdir ~/.config/i3/i3status | |
| cp /etc/i3status.conf ~/.config/i3/i3status/default.conf |