├── LICENSE-CC.txt ├── LICENSE-GPL.txt ├── README.md ├── bin ├── .sf ├── pulisci ├── soluzione └── verifica ├── docs ├── .buildinfo ├── .nojekyll ├── CNAME ├── _downloads │ ├── 01241b1f72a450b1a21b5222e5c9a9e8 │ │ └── SommaArgs.java │ ├── 23b66182e959c3075c1c82d235a40ebd │ │ └── somma_args.c │ ├── 3a9df87432e8b617ec39a9343ea632ed │ │ └── NumeraLinee.java │ ├── 452d9eb247d0a3f8f5e3a247d73fc5c2 │ │ └── sort-str.c │ ├── 45c69ec5ec4008d359b13aa1a73e4c0f │ │ └── maiuscole.c │ ├── 5a4cc7c2d131995d8e69ee465dcdaa08 │ │ └── media.c │ ├── 717f3b5abea5b948ac928132d1e0c52e │ │ └── SommaInput.java │ ├── 747d27612df1a9a44f844497558f1ca4 │ │ └── array.c │ ├── 7bc381c04dc24f9361c296b078abbef4 │ │ └── sprintf.c │ ├── bb4c084a698752079ea408652c1477d4 │ │ └── SommaInputBis.java │ ├── c6e0e727fb7b4f5c966757c69d81d2ed │ │ └── somma_stdin.c │ ├── e7c25acb5ff367ab3ca58e031691c553 │ │ └── strdup.c │ └── fae52d1f45c68294956738b7565e7b13 │ │ └── sort-int.c ├── _images │ ├── esercizi_4_1.png │ └── esercizi_6_1.png ├── _static │ ├── _stemmer.js │ ├── basic.css │ ├── custom.css │ ├── doctools.js │ ├── documentation_options.js │ ├── file.png │ ├── jquery-3.5.1.js │ ├── jquery.js │ ├── language_data.js │ ├── logo.png │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── translations.js │ ├── underscore-1.3.1.js │ └── underscore.js ├── cstdio.html ├── esercizi.html ├── index.html ├── javaio.html ├── linux.html ├── objects.inv ├── robots.txt ├── search.html ├── searchindex.js ├── sitemap.txt └── strumenti.html └── esercizi ├── abbastanza_risparmi ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── aelleemmezeta ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── al_contrario ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── alfabeto_inscatolato ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── alfabeto_morse_codifica ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── alfabeto_morse_decodifica ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── amitlu_parola ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── input-1.txt ├── input-2.txt └── input-3.txt ├── automa_cellulare ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── barretta_piu_lunga ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt ├── barrette_blocchetto ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── battaglia_navale_arbitro ├── TestRunner.java ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt ├── input-6.txt └── input-7.txt ├── battaglia_navale_giocatore ├── TestRunner.java ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── battaglia_navale_griglia ├── TestRunner.java ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── battaglia_navale_nave ├── TestRunner.java ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── battaglia_navale_posizione ├── TestRunner.java ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── expected-1.txt ├── expected-2.txt └── expected-3.txt ├── battaglia_navale_random ├── TestRunner.java └── Testo.md ├── bilancio ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt ├── bounding_box ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt ├── calcolatrice_senza_tasti ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt ├── calcolatrice_somma ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt ├── campo_minato ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── campo_minato_oo ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt ├── caratteri_unici ├── Testo.md ├── args-1.txt ├── args-10.txt ├── args-11.txt ├── args-12.txt ├── args-13.txt ├── args-14.txt ├── args-15.txt ├── args-16.txt ├── args-17.txt ├── args-18.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── args-6.txt ├── args-7.txt ├── args-8.txt ├── args-9.txt ├── expected-1.txt ├── expected-10.txt ├── expected-11.txt ├── expected-12.txt ├── expected-13.txt ├── expected-14.txt ├── expected-15.txt ├── expected-16.txt ├── expected-17.txt ├── expected-18.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── expected-8.txt └── expected-9.txt ├── carrello ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── cattedrale ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt ├── censura_la_prima ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── censura_la_seconda ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── censura_lungezza ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── input-1.txt ├── input-2.txt └── input-3.txt ├── cerca_e_rimpiazza ├── Testo.md ├── args-1.txt ├── args-2.txt ├── expected-1.txt ├── expected-2.txt ├── input-1.txt └── input-2.txt ├── cifra_piu_frequente ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── cifratura_zigzag ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── input-1.txt ├── input-2.txt └── input-3.txt ├── code_di_stringhe ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── codice_di_vigenere ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── colonne ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── args-6.txt ├── args-7.txt ├── args-8.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt └── expected-8.txt ├── colonne_cifre ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── condensa_parole ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt └── expected-4.txt ├── conta_barrette ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt ├── conta_cifre_dispari ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt ├── conta_cifre_pari ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt ├── conta_divisori ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt ├── conta_i_quadrati ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── conta_inversioni ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── conta_irap ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── conta_le_navi ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── conta_linee ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── input-1.txt ├── input-2.txt └── input-3.txt ├── conta_numeri_ganzi ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── conta_parole ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── conta_parole_pari ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── input-1.txt └── input-2.txt ├── conta_parole_rotonde ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── conta_pokemon ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── input-1.txt └── input-2.txt ├── conta_pokemon_diversi ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── input-1.txt └── input-2.txt ├── conta_potenze_due ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── conta_sottosequenze ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── conta_terne_pitagoriche ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── contenimento_tra_sequenze ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── expected-8.txt ├── expected-9.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt ├── input-6.txt ├── input-7.txt ├── input-8.txt └── input-9.txt ├── coppie_consecutive ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── crivello_di_eratostene ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt └── expected-4.txt ├── dentro_cerchio ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── dentro_triangolo ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── discesa_rapida ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── disegna_barretta ├── Testo.md ├── args-1.txt ├── args-2.txt ├── expected-1.txt └── expected-2.txt ├── disegna_barrette_giustificate ├── Testo.md ├── args-1.txt ├── args-2.txt ├── expected-1.txt └── expected-2.txt ├── disegna_bersaglio ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── disegna_croce ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── disegna_denti_di_sega ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt └── expected-4.txt ├── disegna_diamante ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt ├── disegna_freccia_giu ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt └── expected-4.txt ├── disegna_freccia_su ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt └── expected-4.txt ├── disegna_j ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── disegna_montagne ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt └── expected-4.txt ├── disegna_ondequadre ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── disegna_ondequadre_nm ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── disegna_piramide ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── disegna_quadrati ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── disegna_quadrato ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── disegna_quadrato_alternato ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── disegna_quadrato_colonne ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── disegna_quadrato_completo ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── disegna_quadrato_diagonali ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── disegna_rombo ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── disegna_scacchiera ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── disegna_segmenti ├── Testo.md ├── args-1.txt ├── expected-1.txt └── input-1.txt ├── disegna_serpente ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt └── expected-4.txt ├── disegna_spirale ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── disegna_spunta ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── disegna_spunta_fissata ├── Testo.md ├── expected-1.txt └── input-1.txt ├── disegna_spunta_specchiata ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── args-6.txt ├── args-7.txt ├── args-8.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt └── expected-8.txt ├── disegna_torri ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt └── expected-4.txt ├── disegna_traingoli_rettangoli ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── disegna_v ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── expected-8.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt ├── input-6.txt ├── input-7.txt └── input-8.txt ├── disegna_v_fissata ├── Testo.md ├── expected-1.txt └── input-1.txt ├── disegna_v_rovesciate ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── disegno_misterioso ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── display ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt └── expected-4.txt ├── distanza_tra_dispari ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── distanza_tra_pari ├── Testo.md ├── expected-1.txt ├── expected-10.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── expected-8.txt ├── expected-9.txt ├── input-1.txt ├── input-10.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt ├── input-6.txt ├── input-7.txt ├── input-8.txt └── input-9.txt ├── distesa_di_piramidi ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── divisibile_per_quattro ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── dominazione_aliena ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── expected-1.txt ├── expected-2.txt └── expected-3.txt ├── due_alla ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── editor ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── elimina_ripetizioni ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── estate_torrida ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── expected-8.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt ├── input-6.txt ├── input-7.txt └── input-8.txt ├── fasce_pegi ├── Testo.md ├── expected-1.txt ├── expected-10.txt ├── expected-11.txt ├── expected-12.txt ├── expected-13.txt ├── expected-14.txt ├── expected-15.txt ├── expected-16.txt ├── expected-17.txt ├── expected-18.txt ├── expected-19.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── expected-8.txt ├── expected-9.txt ├── input-1.txt ├── input-10.txt ├── input-11.txt ├── input-12.txt ├── input-13.txt ├── input-14.txt ├── input-15.txt ├── input-16.txt ├── input-17.txt ├── input-18.txt ├── input-19.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt ├── input-6.txt ├── input-7.txt ├── input-8.txt └── input-9.txt ├── fiori_rampicanti ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── fizzbuzz ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── forza_quattro ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── input-1.txt ├── input-2.txt └── input-3.txt ├── frazioni_continue ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── genera_quadrato_magico ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── expected-1.txt ├── expected-2.txt └── expected-3.txt ├── giustifica_a_destra ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── grande_c ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── grande_c_u ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── grandissima_c ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── greppino ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── hanoi ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── incolla_e_rovescia ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── incornicia_il_nome ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── incornicia_il_nome_pari ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── isogramma ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── jugs ├── Testo.md ├── expected-1.txt ├── expected-10.txt ├── expected-11.txt ├── expected-12.txt ├── expected-13.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── expected-8.txt ├── expected-9.txt ├── input-1.txt ├── input-10.txt ├── input-11.txt ├── input-12.txt ├── input-13.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt ├── input-6.txt ├── input-7.txt ├── input-8.txt └── input-9.txt ├── kaprekar ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── lato_maggiore ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── input-1.txt └── input-2.txt ├── lettera_piu_frequente ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── letterogramma ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── lunghezza_media_parole ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── expected-8.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt ├── input-6.txt ├── input-7.txt └── input-8.txt ├── lychrel ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── input-1.txt ├── input-2.txt └── input-3.txt ├── massima_distanza ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── massima_somma ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── massima_stringa ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── massiminimo ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── massimo_prodotto ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── massimo_tra_due ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── massimo_tra_tre ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt ├── mat_max_min ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── input-1.txt ├── input-2.txt └── input-3.txt ├── matrice_circolante ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── matrice_di_hadamard ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── mescola_pari_dispari ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── mescola_parole ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── minima_complessita ├── Testo.md ├── args-1.txt ├── args-10.txt ├── args-11.txt ├── args-12.txt ├── args-13.txt ├── args-14.txt ├── args-15.txt ├── args-16.txt ├── args-17.txt ├── args-18.txt ├── args-19.txt ├── args-2.txt ├── args-20.txt ├── args-21.txt ├── args-22.txt ├── args-23.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── args-6.txt ├── args-7.txt ├── args-8.txt ├── args-9.txt ├── expected-1.txt ├── expected-10.txt ├── expected-11.txt ├── expected-12.txt ├── expected-13.txt ├── expected-14.txt ├── expected-15.txt ├── expected-16.txt ├── expected-17.txt ├── expected-18.txt ├── expected-19.txt ├── expected-2.txt ├── expected-20.txt ├── expected-21.txt ├── expected-22.txt ├── expected-23.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── expected-8.txt └── expected-9.txt ├── minimo_intero_positivo ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── minimo_inventario ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── expected-8.txt ├── expected-9.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt ├── input-6.txt ├── input-7.txt ├── input-8.txt └── input-9.txt ├── minimo_tra_quattro ├── Testo.md ├── expected-1.txt ├── expected-10.txt ├── expected-11.txt ├── expected-12.txt ├── expected-13.txt ├── expected-14.txt ├── expected-15.txt ├── expected-16.txt ├── expected-17.txt ├── expected-18.txt ├── expected-19.txt ├── expected-2.txt ├── expected-20.txt ├── expected-21.txt ├── expected-22.txt ├── expected-23.txt ├── expected-24.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── expected-8.txt ├── expected-9.txt ├── input-1.txt ├── input-10.txt ├── input-11.txt ├── input-12.txt ├── input-13.txt ├── input-14.txt ├── input-15.txt ├── input-16.txt ├── input-17.txt ├── input-18.txt ├── input-19.txt ├── input-2.txt ├── input-20.txt ├── input-21.txt ├── input-22.txt ├── input-23.txt ├── input-24.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt ├── input-6.txt ├── input-7.txt ├── input-8.txt └── input-9.txt ├── movable_do ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── nave_piu_lunga ├── Testo.md ├── expected-1.txt ├── expected-10.txt ├── expected-11.txt ├── expected-12.txt ├── expected-13.txt ├── expected-14.txt ├── expected-15.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── expected-8.txt ├── expected-9.txt ├── input-1.txt ├── input-10.txt ├── input-11.txt ├── input-12.txt ├── input-13.txt ├── input-14.txt ├── input-15.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt ├── input-6.txt ├── input-7.txt ├── input-8.txt └── input-9.txt ├── nave_spaziale ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── ngram ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── args-6.txt ├── args-7.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt ├── input-6.txt └── input-7.txt ├── numeri_felici ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── expected-8.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt ├── input-6.txt ├── input-7.txt └── input-8.txt ├── numeri_fortunati ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt └── expected-4.txt ├── numeri_narcisi ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── numeri_scala ├── Testo.md ├── args-1.txt ├── args-10.txt ├── args-11.txt ├── args-12.txt ├── args-13.txt ├── args-14.txt ├── args-15.txt ├── args-16.txt ├── args-17.txt ├── args-18.txt ├── args-19.txt ├── args-2.txt ├── args-20.txt ├── args-21.txt ├── args-22.txt ├── args-23.txt ├── args-24.txt ├── args-25.txt ├── args-26.txt ├── args-27.txt ├── args-28.txt ├── args-29.txt ├── args-3.txt ├── args-30.txt ├── args-31.txt ├── args-4.txt ├── args-5.txt ├── args-6.txt ├── args-7.txt ├── args-8.txt ├── args-9.txt ├── expected-1.txt ├── expected-10.txt ├── expected-11.txt ├── expected-12.txt ├── expected-13.txt ├── expected-14.txt ├── expected-15.txt ├── expected-16.txt ├── expected-17.txt ├── expected-18.txt ├── expected-19.txt ├── expected-2.txt ├── expected-20.txt ├── expected-21.txt ├── expected-22.txt ├── expected-23.txt ├── expected-24.txt ├── expected-25.txt ├── expected-26.txt ├── expected-27.txt ├── expected-28.txt ├── expected-29.txt ├── expected-3.txt ├── expected-30.txt ├── expected-31.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── expected-8.txt └── expected-9.txt ├── numero_cancellato ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── numero_misterioso ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── numero_piu_pesante ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── expected-1.txt ├── expected-2.txt └── expected-3.txt ├── operaio_pigro ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── ordina_due_stringhe ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── ordinali_von_neumann ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── palindroma ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── input-1.txt └── input-2.txt ├── palindroma_r ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── parola_piu_pesante ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── parola_piu_pesante_argmax ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── parole_crescenti ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4-txt └── input-4.txt ├── parole_graziose ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── args-6.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt └── expected-6.txt ├── parole_graziose_stdin ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt ├── parole_in_numeri ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── parole_incatenate ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── parole_inverse ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── args-6.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt └── expected-6.txt ├── parole_precedute ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── parole_proibite ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── parole_uniche ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── input-1.txt ├── input-2.txt └── input-3.txt ├── patapum ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── piccola_calcolatrice ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt ├── piccola_calcolatrice_args ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── args-6.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt └── expected-6.txt ├── pila_di_stringhe ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── pile_di_interi ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── pile_di_stringhe ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── pipe ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── args-6.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt └── expected-6.txt ├── piramide_di_numeri ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── piramide_di_numeri_stdin ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── pochi_zero ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── potenze_r ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── prefisso ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── primaedultima_parola_per_vocale ├── Testo.md ├── expected-1.txt ├── expected-10.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── expected-8.txt ├── expected-9.txt ├── input-1.txt ├── input-10.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt ├── input-6.txt ├── input-7.txt ├── input-8.txt └── input-9.txt ├── prodotto_di_matrici ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── args-6.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt ├── prodotto_dispari ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── prova_del_nove ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── quadrato_magico ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── quanti_massimi ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── quanti_minimi ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── quasi_uguali ├── Testo.md ├── expected-1.txt ├── expected-10.txt ├── expected-11.txt ├── expected-12.txt ├── expected-13.txt ├── expected-14.txt ├── expected-15.txt ├── expected-16.txt ├── expected-17.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── expected-8.txt ├── expected-9.txt ├── input-1.txt ├── input-10.txt ├── input-11.txt ├── input-12.txt ├── input-13.txt ├── input-14.txt ├── input-15.txt ├── input-16.txt ├── input-17.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt ├── input-6.txt ├── input-7.txt ├── input-8.txt └── input-9.txt ├── regine_all_attacco ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt ├── riconosci_operazione ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── expected-8.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt ├── input-6.txt ├── input-7.txt └── input-8.txt ├── riconosci_quadrato_magico ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── righello ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── righello_orizzontale ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt ├── rimpiazza ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── args-6.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt ├── rotazione_parola ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── rpn_evaluator ├── TestRunner.java ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── rpn_intstack ├── TestRunner.java ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── input-1.txt ├── input-2.txt └── input-3.txt ├── rpn_token ├── TestRunner.java ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── rpn_tokenizer ├── TestRunner.java ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── saltapicchio ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── args-6.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt ├── salve_mondo ├── Testo.md ├── expected-1.txt └── input-1.txt ├── salve_tutti ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt └── expected-4.txt ├── scala_discendente ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── scale ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── input-1.txt ├── input-2.txt └── input-3.txt ├── segmenta_url ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── seleziona_colonna ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── seleziona_riga ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── sequenze_di_collatz ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── sequenze_monotone ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── serpente_lettere ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt └── expected-4.txt ├── serpente_numeri ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt └── expected-4.txt ├── somma_alternata ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── somma_argomenti ├── Testo.md ├── args-1.txt └── expected-1.txt ├── somma_dagli_estremi ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── somma_dal_centro ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── somma_e_salta ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── somma_e_sottrai ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── somma_interi ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── input-1.txt └── input-2.txt ├── somma_interi_positivi ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── somma_multipli ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── somma_multipli_manon ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── somma_parole_pari ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── somma_positiva ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── somma_precisione_arbitraria ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── somma_strana ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── somma_telescopica ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── somma_tre_centesimi ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── somma_tre_importi ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── somma_tre_reali ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── sort_ultima_lettera ├── Testo.md ├── args-1.txt ├── args-2.txt ├── expected-1.txt └── expected-2.txt ├── sottoinsieme ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── expected-8.txt ├── expected-9.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt ├── input-6.txt ├── input-7.txt ├── input-8.txt └── input-9.txt ├── sottostringhe ├── Testo.md ├── args-1.txt ├── args-2.txt ├── expected-1.txt └── expected-2.txt ├── spirale ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── stampante_configurabile ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── steganografia ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── strana_sillabazione ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── stringa_piu_lunga ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── studiare_stanca ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── suffisso ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── suffisso_sequenze ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt ├── tante_esse ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── tanto_sole ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── expected-8.txt ├── expected-9.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt ├── input-6.txt ├── input-7.txt ├── input-8.txt └── input-9.txt ├── tartaglia ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── ticotaco ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── tra_parentesi ├── Testo.md ├── expected-1.txt ├── expected-10.txt ├── expected-11.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── expected-8.txt ├── expected-9.txt ├── input-1.txt ├── input-10.txt ├── input-11.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt ├── input-6.txt ├── input-7.txt ├── input-8.txt └── input-9.txt ├── trasmissione_a_pacchetti_messaggio ├── TestRunner.java ├── Testo.md ├── args-1.txt ├── args-2.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── trasmissione_a_pacchetti_pacchetto ├── TestRunner.java ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── trasmissione_a_pacchetti_ricevitore ├── TestRunner.java ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── trasponi_matrice ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt ├── trenino ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt ├── trova_ultimo ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── u_inscatolate ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── ultima_parola_per_vocale ├── Testo.md ├── expected-1.txt ├── expected-10.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── expected-8.txt ├── expected-9.txt ├── input-1.txt ├── input-10.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt ├── input-6.txt ├── input-7.txt ├── input-8.txt └── input-9.txt ├── ultima_ripetizione ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt └── expected-5.txt ├── ultimo_caporale ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── ultimo_giorno_di_pioggia ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt ├── ultimo_maggiorenne ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── ultimo_positivo ├── Testo.md ├── expected-1.txt ├── expected-10.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── expected-7.txt ├── expected-8.txt ├── expected-9.txt ├── input-1.txt ├── input-10.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt ├── input-6.txt ├── input-7.txt ├── input-8.txt └── input-9.txt ├── ultimo_uno ├── Testo.md ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt └── input-5.txt ├── van_eck ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt └── expected-4.txt ├── visualizza_hanoi ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt └── input-4.txt └── word_wrap ├── Testo.md ├── args-1.txt ├── args-2.txt ├── args-3.txt ├── args-4.txt ├── args-5.txt ├── args-6.txt ├── expected-1.txt ├── expected-2.txt ├── expected-3.txt ├── expected-4.txt ├── expected-5.txt ├── expected-6.txt ├── input-1.txt ├── input-2.txt ├── input-3.txt ├── input-4.txt ├── input-5.txt └── input-6.txt /docs/CNAME: -------------------------------------------------------------------------------- 1 | labprog.mapio.it 2 | -------------------------------------------------------------------------------- /esercizi/abbastanza_risparmi/input-4.txt: -------------------------------------------------------------------------------- 1 | 1 0 2 | -------------------------------------------------------------------------------- /esercizi/aelleemmezeta/expected-1.txt: -------------------------------------------------------------------------------- 1 | 3 7 2 | -------------------------------------------------------------------------------- /esercizi/aelleemmezeta/expected-2.txt: -------------------------------------------------------------------------------- 1 | 6 4 2 | -------------------------------------------------------------------------------- /esercizi/aelleemmezeta/expected-3.txt: -------------------------------------------------------------------------------- 1 | 3 7 2 | -------------------------------------------------------------------------------- /esercizi/aelleemmezeta/expected-4.txt: -------------------------------------------------------------------------------- 1 | 60 90 2 | -------------------------------------------------------------------------------- /esercizi/al_contrario/expected-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/al_contrario/input-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/alfabeto_inscatolato/args-1.txt: -------------------------------------------------------------------------------- 1 | 4 2 2 | -------------------------------------------------------------------------------- /esercizi/alfabeto_inscatolato/args-2.txt: -------------------------------------------------------------------------------- 1 | 2 1 2 | -------------------------------------------------------------------------------- /esercizi/alfabeto_inscatolato/args-3.txt: -------------------------------------------------------------------------------- 1 | 5 2 2 | -------------------------------------------------------------------------------- /esercizi/alfabeto_inscatolato/args-4.txt: -------------------------------------------------------------------------------- 1 | 5 3 2 | -------------------------------------------------------------------------------- /esercizi/alfabeto_inscatolato/args-5.txt: -------------------------------------------------------------------------------- 1 | 6 3 2 | -------------------------------------------------------------------------------- /esercizi/amitlu_parola/expected-1.txt: -------------------------------------------------------------------------------- 1 | fuzz 2 | -------------------------------------------------------------------------------- /esercizi/amitlu_parola/expected-2.txt: -------------------------------------------------------------------------------- 1 | uno 2 | -------------------------------------------------------------------------------- /esercizi/automa_cellulare/args-1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/automa_cellulare/args-2.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/automa_cellulare/args-3.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/automa_cellulare/args-4.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/automa_cellulare/args-5.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/automa_cellulare/input-3.txt: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /esercizi/automa_cellulare/input-4.txt: -------------------------------------------------------------------------------- 1 | *** 2 | -------------------------------------------------------------------------------- /esercizi/automa_cellulare/input-5.txt: -------------------------------------------------------------------------------- 1 | *-* 2 | -------------------------------------------------------------------------------- /esercizi/barretta_piu_lunga/expected-1.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/barretta_piu_lunga/expected-2.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/barretta_piu_lunga/expected-3.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/barretta_piu_lunga/expected-4.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/barretta_piu_lunga/expected-6.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/barrette_blocchetto/args-5.txt: -------------------------------------------------------------------------------- 1 | 3 3 2 | -------------------------------------------------------------------------------- /esercizi/bilancio/expected-2.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/bilancio/expected-3.txt: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /esercizi/bilancio/expected-4.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/bilancio/expected-5.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 3 3 | -------------------------------------------------------------------------------- /esercizi/bilancio/expected-6.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/bilancio/input-6.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/bounding_box/expected-1.txt: -------------------------------------------------------------------------------- 1 | 9 17 2 | -------------------------------------------------------------------------------- /esercizi/bounding_box/expected-2.txt: -------------------------------------------------------------------------------- 1 | 5 5 2 | -------------------------------------------------------------------------------- /esercizi/bounding_box/expected-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 2 | -------------------------------------------------------------------------------- /esercizi/bounding_box/expected-4.txt: -------------------------------------------------------------------------------- 1 | 9 17 2 | -------------------------------------------------------------------------------- /esercizi/bounding_box/expected-5.txt: -------------------------------------------------------------------------------- 1 | 12 22 2 | -------------------------------------------------------------------------------- /esercizi/bounding_box/expected-6.txt: -------------------------------------------------------------------------------- 1 | 10 22 2 | -------------------------------------------------------------------------------- /esercizi/bounding_box/input-3.txt: -------------------------------------------------------------------------------- 1 | ** 2 | -------------------------------------------------------------------------------- /esercizi/calcolatrice_somma/expected-3.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/calcolatrice_somma/expected-5.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/calcolatrice_somma/expected-6.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/campo_minato/expected-4.txt: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /esercizi/campo_minato/expected-5.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/campo_minato/input-4.txt: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /esercizi/campo_minato/input-5.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /esercizi/campo_minato_oo/expected-5.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/campo_minato_oo/expected-6.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/caratteri_unici/args-10.txt: -------------------------------------------------------------------------------- 1 | cappero 2 | -------------------------------------------------------------------------------- /esercizi/caratteri_unici/args-11.txt: -------------------------------------------------------------------------------- 1 | avra 2 | -------------------------------------------------------------------------------- /esercizi/caratteri_unici/args-12.txt: -------------------------------------------------------------------------------- 1 | badate 2 | -------------------------------------------------------------------------------- /esercizi/caratteri_unici/args-13.txt: -------------------------------------------------------------------------------- 1 | basta 2 | -------------------------------------------------------------------------------- /esercizi/caratteri_unici/args-14.txt: -------------------------------------------------------------------------------- 1 | bastera 2 | -------------------------------------------------------------------------------- /esercizi/caratteri_unici/args-15.txt: -------------------------------------------------------------------------------- 1 | ben 2 | -------------------------------------------------------------------------------- /esercizi/caratteri_unici/args-16.txt: -------------------------------------------------------------------------------- 1 | bolle 2 | -------------------------------------------------------------------------------- /esercizi/caratteri_unici/args-17.txt: -------------------------------------------------------------------------------- 1 | buon 2 | -------------------------------------------------------------------------------- /esercizi/caratteri_unici/args-18.txt: -------------------------------------------------------------------------------- 1 | burro 2 | -------------------------------------------------------------------------------- /esercizi/caratteri_unici/args-2.txt: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /esercizi/caratteri_unici/args-3.txt: -------------------------------------------------------------------------------- 1 | abbia 2 | -------------------------------------------------------------------------------- /esercizi/caratteri_unici/args-4.txt: -------------------------------------------------------------------------------- 1 | acqua 2 | -------------------------------------------------------------------------------- /esercizi/caratteri_unici/args-6.txt: -------------------------------------------------------------------------------- 1 | al 2 | -------------------------------------------------------------------------------- /esercizi/caratteri_unici/args-7.txt: -------------------------------------------------------------------------------- 1 | alla 2 | -------------------------------------------------------------------------------- /esercizi/caratteri_unici/args-8.txt: -------------------------------------------------------------------------------- 1 | allora 2 | -------------------------------------------------------------------------------- /esercizi/caratteri_unici/args-9.txt: -------------------------------------------------------------------------------- 1 | altra 2 | -------------------------------------------------------------------------------- /esercizi/caratteri_unici/expected-1.txt: -------------------------------------------------------------------------------- 1 | aminre -------------------------------------------------------------------------------- /esercizi/caratteri_unici/expected-10.txt: -------------------------------------------------------------------------------- 1 | capero -------------------------------------------------------------------------------- /esercizi/caratteri_unici/expected-11.txt: -------------------------------------------------------------------------------- 1 | avr -------------------------------------------------------------------------------- /esercizi/caratteri_unici/expected-12.txt: -------------------------------------------------------------------------------- 1 | badte -------------------------------------------------------------------------------- /esercizi/caratteri_unici/expected-13.txt: -------------------------------------------------------------------------------- 1 | bast -------------------------------------------------------------------------------- /esercizi/caratteri_unici/expected-14.txt: -------------------------------------------------------------------------------- 1 | baster -------------------------------------------------------------------------------- /esercizi/caratteri_unici/expected-15.txt: -------------------------------------------------------------------------------- 1 | ben -------------------------------------------------------------------------------- /esercizi/caratteri_unici/expected-16.txt: -------------------------------------------------------------------------------- 1 | bole -------------------------------------------------------------------------------- /esercizi/caratteri_unici/expected-17.txt: -------------------------------------------------------------------------------- 1 | buon -------------------------------------------------------------------------------- /esercizi/caratteri_unici/expected-18.txt: -------------------------------------------------------------------------------- 1 | buro -------------------------------------------------------------------------------- /esercizi/caratteri_unici/expected-2.txt: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /esercizi/caratteri_unici/expected-3.txt: -------------------------------------------------------------------------------- 1 | abi -------------------------------------------------------------------------------- /esercizi/caratteri_unici/expected-4.txt: -------------------------------------------------------------------------------- 1 | acqu -------------------------------------------------------------------------------- /esercizi/caratteri_unici/expected-5.txt: -------------------------------------------------------------------------------- 1 | agiunedo -------------------------------------------------------------------------------- /esercizi/caratteri_unici/expected-6.txt: -------------------------------------------------------------------------------- 1 | al -------------------------------------------------------------------------------- /esercizi/caratteri_unici/expected-7.txt: -------------------------------------------------------------------------------- 1 | al -------------------------------------------------------------------------------- /esercizi/caratteri_unici/expected-8.txt: -------------------------------------------------------------------------------- 1 | alor -------------------------------------------------------------------------------- /esercizi/caratteri_unici/expected-9.txt: -------------------------------------------------------------------------------- 1 | altr -------------------------------------------------------------------------------- /esercizi/carrello/args-1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/carrello/args-2.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/carrello/args-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/carrello/args-4.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/carrello/expected-4.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 0 3 | -------------------------------------------------------------------------------- /esercizi/cattedrale/expected-1.txt: -------------------------------------------------------------------------------- 1 | | 2 | -------------------------------------------------------------------------------- /esercizi/cattedrale/input-1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/cattedrale/input-2.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/cattedrale/input-3.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/cattedrale/input-4.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/cattedrale/input-5.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/cattedrale/input-6.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/censura_la_prima/input-3.txt: -------------------------------------------------------------------------------- 1 | fine 2 | -------------------------------------------------------------------------------- /esercizi/censura_lungezza/args-1.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/censura_lungezza/args-2.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/censura_lungezza/args-3.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/code_di_stringhe/args-1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/code_di_stringhe/args-2.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/code_di_stringhe/args-3.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/code_di_stringhe/args-4.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/code_di_stringhe/args-5.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/codice_di_vigenere/args-1.txt: -------------------------------------------------------------------------------- 1 | VERME 2 | -------------------------------------------------------------------------------- /esercizi/codice_di_vigenere/args-2.txt: -------------------------------------------------------------------------------- 1 | FWJOW 2 | -------------------------------------------------------------------------------- /esercizi/codice_di_vigenere/args-3.txt: -------------------------------------------------------------------------------- 1 | YANW 2 | -------------------------------------------------------------------------------- /esercizi/codice_di_vigenere/args-4.txt: -------------------------------------------------------------------------------- 1 | CANE 2 | -------------------------------------------------------------------------------- /esercizi/colonne/args-1.txt: -------------------------------------------------------------------------------- 1 | c a l l e 2 | -------------------------------------------------------------------------------- /esercizi/colonne/args-2.txt: -------------------------------------------------------------------------------- 1 | a c a b 2 | -------------------------------------------------------------------------------- /esercizi/colonne/args-3.txt: -------------------------------------------------------------------------------- 1 | a z 2 | -------------------------------------------------------------------------------- /esercizi/colonne/args-4.txt: -------------------------------------------------------------------------------- 1 | a z z u r r o 2 | -------------------------------------------------------------------------------- /esercizi/colonne/args-5.txt: -------------------------------------------------------------------------------- 1 | z a 2 | -------------------------------------------------------------------------------- /esercizi/colonne/args-7.txt: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /esercizi/colonne/args-8.txt: -------------------------------------------------------------------------------- 1 | z 2 | -------------------------------------------------------------------------------- /esercizi/colonne/expected-7.txt: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /esercizi/colonne_cifre/args-1.txt: -------------------------------------------------------------------------------- 1 | 3 1 6 6 2 2 | -------------------------------------------------------------------------------- /esercizi/colonne_cifre/args-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 1 2 2 | -------------------------------------------------------------------------------- /esercizi/colonne_cifre/args-3.txt: -------------------------------------------------------------------------------- 1 | 0 9 0 2 | -------------------------------------------------------------------------------- /esercizi/colonne_cifre/args-4.txt: -------------------------------------------------------------------------------- 1 | 9 0 9 2 | -------------------------------------------------------------------------------- /esercizi/conta_barrette/expected-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/conta_barrette/expected-2.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/conta_barrette/expected-3.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/conta_barrette/expected-4.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/conta_barrette/expected-5.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/conta_barrette/expected-6.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/conta_cifre_pari/expected-1.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/conta_cifre_pari/expected-2.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /esercizi/conta_cifre_pari/expected-3.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/conta_cifre_pari/expected-4.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /esercizi/conta_cifre_pari/expected-5.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/conta_cifre_pari/expected-6.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/conta_divisori/expected-1.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/conta_divisori/expected-2.txt: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /esercizi/conta_divisori/expected-3.txt: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /esercizi/conta_divisori/expected-4.txt: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /esercizi/conta_divisori/expected-5.txt: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /esercizi/conta_divisori/expected-6.txt: -------------------------------------------------------------------------------- 1 | 32 2 | -------------------------------------------------------------------------------- /esercizi/conta_divisori/input-1.txt: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /esercizi/conta_divisori/input-2.txt: -------------------------------------------------------------------------------- 1 | 22402641 2 | -------------------------------------------------------------------------------- /esercizi/conta_divisori/input-3.txt: -------------------------------------------------------------------------------- 1 | 65925462 2 | -------------------------------------------------------------------------------- /esercizi/conta_divisori/input-4.txt: -------------------------------------------------------------------------------- 1 | 20248676 2 | -------------------------------------------------------------------------------- /esercizi/conta_divisori/input-5.txt: -------------------------------------------------------------------------------- 1 | 23648498 2 | -------------------------------------------------------------------------------- /esercizi/conta_divisori/input-6.txt: -------------------------------------------------------------------------------- 1 | 26191214 2 | -------------------------------------------------------------------------------- /esercizi/conta_i_quadrati/expected-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/conta_i_quadrati/expected-2.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/conta_i_quadrati/expected-3.txt: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /esercizi/conta_i_quadrati/expected-4.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/conta_inversioni/expected-1.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/conta_inversioni/expected-2.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/conta_inversioni/expected-3.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/conta_inversioni/expected-4.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/conta_inversioni/expected-5.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/conta_inversioni/input-5.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/conta_irap/expected-1.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/conta_irap/expected-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/conta_irap/expected-3.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/conta_irap/expected-4.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/conta_irap/expected-5.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/conta_irap/input-2.txt: -------------------------------------------------------------------------------- 1 | 431 2 | 0 3 | -------------------------------------------------------------------------------- /esercizi/conta_irap/input-3.txt: -------------------------------------------------------------------------------- 1 | 12 2 | 0 3 | -------------------------------------------------------------------------------- /esercizi/conta_irap/input-4.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/conta_le_navi/expected-1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/conta_le_navi/expected-2.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/conta_le_navi/expected-3.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/conta_le_navi/expected-4.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/conta_le_navi/expected-5.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/conta_linee/expected-1.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/conta_linee/expected-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/conta_linee/expected-3.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/conta_numeri_ganzi/expected-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/conta_numeri_ganzi/expected-2.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/conta_numeri_ganzi/expected-4.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/conta_numeri_ganzi/expected-5.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/conta_parole/expected-1.txt: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /esercizi/conta_parole/expected-2.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/conta_parole/expected-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/conta_parole/expected-4.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/conta_parole/expected-5.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/conta_parole/input-3.txt: -------------------------------------------------------------------------------- 1 | mario. 2 | -------------------------------------------------------------------------------- /esercizi/conta_parole/input-4.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /esercizi/conta_parole/input-5.txt: -------------------------------------------------------------------------------- 1 | . 2 | 3 | -------------------------------------------------------------------------------- /esercizi/conta_parole_pari/expected-1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/conta_parole_pari/expected-2.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/conta_pokemon/expected-1.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/conta_pokemon/expected-2.txt: -------------------------------------------------------------------------------- 1 | 15 2 | -------------------------------------------------------------------------------- /esercizi/conta_potenze_due/expected-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/conta_potenze_due/expected-2.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/conta_potenze_due/expected-3.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/conta_potenze_due/expected-4.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/conta_potenze_due/expected-5.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/conta_potenze_due/input-3.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/coppie_consecutive/expected-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/coppie_consecutive/expected-2.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/coppie_consecutive/expected-3.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/coppie_consecutive/expected-4.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/coppie_consecutive/expected-5.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/dentro_cerchio/args-1.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/dentro_cerchio/args-2.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/dentro_cerchio/args-3.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/dentro_cerchio/args-4.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/dentro_cerchio/args-5.txt: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /esercizi/dentro_cerchio/expected-1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/dentro_cerchio/expected-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/dentro_cerchio/expected-3.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/dentro_cerchio/expected-4.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/dentro_cerchio/expected-5.txt: -------------------------------------------------------------------------------- 1 | 39 2 | -------------------------------------------------------------------------------- /esercizi/dentro_triangolo/args-1.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/dentro_triangolo/args-2.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/dentro_triangolo/args-3.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/dentro_triangolo/args-4.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/dentro_triangolo/args-5.txt: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /esercizi/dentro_triangolo/expected-1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/dentro_triangolo/expected-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/dentro_triangolo/expected-3.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/dentro_triangolo/expected-4.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/dentro_triangolo/expected-5.txt: -------------------------------------------------------------------------------- 1 | 29 2 | -------------------------------------------------------------------------------- /esercizi/discesa_rapida/expected-1.txt: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /esercizi/discesa_rapida/expected-2.txt: -------------------------------------------------------------------------------- 1 | 210 2 | -------------------------------------------------------------------------------- /esercizi/discesa_rapida/expected-3.txt: -------------------------------------------------------------------------------- 1 | 447 2 | -------------------------------------------------------------------------------- /esercizi/discesa_rapida/expected-4.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /esercizi/disegna_barretta/args-1.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/disegna_barretta/args-2.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /esercizi/disegna_barretta/expected-2.txt: -------------------------------------------------------------------------------- 1 | ******* -------------------------------------------------------------------------------- /esercizi/disegna_bersaglio/args-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/disegna_bersaglio/args-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/disegna_bersaglio/args-3.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/disegna_bersaglio/args-4.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/disegna_bersaglio/args-5.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/disegna_croce/expected-5.txt: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /esercizi/disegna_croce/input-1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/disegna_croce/input-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/disegna_croce/input-3.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/disegna_croce/input-4.txt: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /esercizi/disegna_croce/input-5.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/disegna_denti_di_sega/args-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/disegna_denti_di_sega/args-2.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/disegna_denti_di_sega/args-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/disegna_denti_di_sega/args-4.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/disegna_diamante/expected-5.txt: -------------------------------------------------------------------------------- 1 | A 2 | -------------------------------------------------------------------------------- /esercizi/disegna_diamante/input-1.txt: -------------------------------------------------------------------------------- 1 | B 2 | -------------------------------------------------------------------------------- /esercizi/disegna_diamante/input-2.txt: -------------------------------------------------------------------------------- 1 | E 2 | -------------------------------------------------------------------------------- /esercizi/disegna_diamante/input-3.txt: -------------------------------------------------------------------------------- 1 | C 2 | -------------------------------------------------------------------------------- /esercizi/disegna_diamante/input-4.txt: -------------------------------------------------------------------------------- 1 | G 2 | -------------------------------------------------------------------------------- /esercizi/disegna_diamante/input-5.txt: -------------------------------------------------------------------------------- 1 | A 2 | -------------------------------------------------------------------------------- /esercizi/disegna_diamante/input-6.txt: -------------------------------------------------------------------------------- 1 | Z 2 | -------------------------------------------------------------------------------- /esercizi/disegna_freccia_giu/args-1.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /esercizi/disegna_freccia_giu/args-2.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/disegna_freccia_giu/args-3.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/disegna_freccia_giu/args-4.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/disegna_freccia_su/args-1.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /esercizi/disegna_freccia_su/args-2.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/disegna_freccia_su/args-3.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/disegna_freccia_su/args-4.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/disegna_j/input-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/disegna_j/input-2.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/disegna_j/input-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/disegna_j/input-4.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/disegna_j/input-5.txt: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /esercizi/disegna_montagne/args-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/disegna_montagne/args-2.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/disegna_montagne/args-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/disegna_montagne/args-4.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/disegna_ondequadre/input-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/disegna_ondequadre/input-2.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/disegna_ondequadre/input-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/disegna_ondequadre/input-4.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/disegna_piramide/args-1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/disegna_piramide/args-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/disegna_piramide/args-3.txt: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /esercizi/disegna_piramide/args-4.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/disegna_piramide/args-5.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/disegna_piramide/expected-5.txt: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /esercizi/disegna_quadrati/input-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/disegna_quadrati/input-2.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/disegna_quadrati/input-3.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/disegna_quadrati/input-4.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/disegna_quadrati/input-5.txt: -------------------------------------------------------------------------------- 1 | 23 2 | -------------------------------------------------------------------------------- /esercizi/disegna_quadrato/expected-3.txt: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /esercizi/disegna_quadrato/input-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/disegna_quadrato/input-2.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/disegna_quadrato/input-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/disegna_quadrato/input-4.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/disegna_quadrato/input-5.txt: -------------------------------------------------------------------------------- 1 | 23 2 | -------------------------------------------------------------------------------- /esercizi/disegna_rombo/expected-5.txt: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /esercizi/disegna_rombo/input-1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/disegna_rombo/input-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/disegna_rombo/input-3.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/disegna_rombo/input-4.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/disegna_rombo/input-5.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/disegna_scacchiera/input-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/disegna_scacchiera/input-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/disegna_scacchiera/input-3.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/disegna_scacchiera/input-4.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/disegna_scacchiera/input-5.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/disegna_segmenti/args-1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/disegna_serpente/args-1.txt: -------------------------------------------------------------------------------- 1 | 3 10 2 | -------------------------------------------------------------------------------- /esercizi/disegna_serpente/args-2.txt: -------------------------------------------------------------------------------- 1 | 4 16 2 | -------------------------------------------------------------------------------- /esercizi/disegna_serpente/args-3.txt: -------------------------------------------------------------------------------- 1 | 1 5 2 | -------------------------------------------------------------------------------- /esercizi/disegna_serpente/args-4.txt: -------------------------------------------------------------------------------- 1 | 3 1 2 | -------------------------------------------------------------------------------- /esercizi/disegna_spirale/args-1.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/disegna_spirale/args-2.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/disegna_spirale/args-3.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/disegna_spirale/args-4.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/disegna_spirale/args-5.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /esercizi/disegna_spunta/input-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/disegna_spunta/input-2.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/disegna_spunta/input-3.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/disegna_spunta/input-4.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/disegna_torri/args-4.txt: -------------------------------------------------------------------------------- 1 | 1 2 3 2 1 2 | -------------------------------------------------------------------------------- /esercizi/disegna_v/expected-4.txt: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /esercizi/disegna_v/input-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/disegna_v/input-2.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/disegna_v/input-3.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/disegna_v/input-4.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/disegna_v/input-5.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/disegna_v/input-6.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/disegna_v/input-7.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/disegna_v/input-8.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /esercizi/disegna_v_rovesciate/input-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/disegna_v_rovesciate/input-2.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/disegna_v_rovesciate/input-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/disegna_v_rovesciate/input-4.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/disegna_v_rovesciate/input-5.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/display/args-1.txt: -------------------------------------------------------------------------------- 1 | salve mondo 2 | -------------------------------------------------------------------------------- /esercizi/display/args-2.txt: -------------------------------------------------------------------------------- 1 | bravo chi legge 2 | -------------------------------------------------------------------------------- /esercizi/display/args-4.txt: -------------------------------------------------------------------------------- 1 | mamma li turchi 2 | -------------------------------------------------------------------------------- /esercizi/distanza_tra_pari/expected-1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/distanza_tra_pari/expected-10.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/distanza_tra_pari/expected-2.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/distanza_tra_pari/expected-3.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/distanza_tra_pari/expected-4.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/distanza_tra_pari/expected-5.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/distanza_tra_pari/expected-6.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/distanza_tra_pari/expected-7.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/distanza_tra_pari/expected-8.txt: -------------------------------------------------------------------------------- 1 | -1 2 | -------------------------------------------------------------------------------- /esercizi/distanza_tra_pari/expected-9.txt: -------------------------------------------------------------------------------- 1 | -1 2 | -------------------------------------------------------------------------------- /esercizi/distanza_tra_pari/input-8.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/distanza_tra_pari/input-9.txt: -------------------------------------------------------------------------------- 1 | 1 1 0 2 | -------------------------------------------------------------------------------- /esercizi/distesa_di_piramidi/input-1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/distesa_di_piramidi/input-2.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/distesa_di_piramidi/input-3.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/distesa_di_piramidi/input-4.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/distesa_di_piramidi/input-5.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/dominazione_aliena/expected-2.txt: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /esercizi/due_alla/args-1.txt: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /esercizi/due_alla/args-2.txt: -------------------------------------------------------------------------------- 1 | 200 2 | -------------------------------------------------------------------------------- /esercizi/due_alla/args-3.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/due_alla/args-4.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/due_alla/args-5.txt: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /esercizi/due_alla/expected-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/due_alla/expected-4.txt: -------------------------------------------------------------------------------- 1 | 1024 2 | -------------------------------------------------------------------------------- /esercizi/editor/expected-1.txt: -------------------------------------------------------------------------------- 1 | ciao mamma -------------------------------------------------------------------------------- /esercizi/editor/expected-2.txt: -------------------------------------------------------------------------------- 1 | mamma -------------------------------------------------------------------------------- /esercizi/editor/expected-3.txt: -------------------------------------------------------------------------------- 1 | ciao mamma -------------------------------------------------------------------------------- /esercizi/editor/input-1.txt: -------------------------------------------------------------------------------- 1 | ki**ciao man*mma 2 | -------------------------------------------------------------------------------- /esercizi/editor/input-3.txt: -------------------------------------------------------------------------------- 1 | ciao mamma 2 | -------------------------------------------------------------------------------- /esercizi/editor/input-4.txt: -------------------------------------------------------------------------------- 1 | ********** 2 | -------------------------------------------------------------------------------- /esercizi/editor/input-5.txt: -------------------------------------------------------------------------------- 1 | 123**4** 2 | -------------------------------------------------------------------------------- /esercizi/estate_torrida/expected-1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/estate_torrida/expected-2.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/estate_torrida/expected-3.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/estate_torrida/expected-4.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/estate_torrida/expected-5.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/estate_torrida/expected-6.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/estate_torrida/expected-7.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/estate_torrida/expected-8.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/estate_torrida/input-5.txt: -------------------------------------------------------------------------------- 1 | 0 0 0 2 | -------------------------------------------------------------------------------- /esercizi/estate_torrida/input-6.txt: -------------------------------------------------------------------------------- 1 | 1 0 0 2 | -------------------------------------------------------------------------------- /esercizi/estate_torrida/input-7.txt: -------------------------------------------------------------------------------- 1 | 0 0 1 2 | -------------------------------------------------------------------------------- /esercizi/estate_torrida/input-8.txt: -------------------------------------------------------------------------------- 1 | 1 0 0 1 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/expected-1.txt: -------------------------------------------------------------------------------- 1 | fascia 12 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/expected-10.txt: -------------------------------------------------------------------------------- 1 | fascia 7 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/expected-2.txt: -------------------------------------------------------------------------------- 1 | fascia 18 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/expected-3.txt: -------------------------------------------------------------------------------- 1 | fascia 3 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/expected-4.txt: -------------------------------------------------------------------------------- 1 | fascia 3 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/expected-5.txt: -------------------------------------------------------------------------------- 1 | fascia 3 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/expected-6.txt: -------------------------------------------------------------------------------- 1 | fascia 7 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/expected-7.txt: -------------------------------------------------------------------------------- 1 | fascia 7 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/expected-8.txt: -------------------------------------------------------------------------------- 1 | fascia 7 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/expected-9.txt: -------------------------------------------------------------------------------- 1 | fascia 7 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/input-1.txt: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/input-10.txt: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/input-11.txt: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/input-12.txt: -------------------------------------------------------------------------------- 1 | 13 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/input-13.txt: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/input-14.txt: -------------------------------------------------------------------------------- 1 | 15 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/input-15.txt: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/input-16.txt: -------------------------------------------------------------------------------- 1 | 17 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/input-17.txt: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/input-18.txt: -------------------------------------------------------------------------------- 1 | 19 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/input-19.txt: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/input-2.txt: -------------------------------------------------------------------------------- 1 | 21 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/input-3.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/input-4.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/input-5.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/input-6.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/input-7.txt: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/input-8.txt: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /esercizi/fasce_pegi/input-9.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/fiori_rampicanti/expected-1.txt: -------------------------------------------------------------------------------- 1 | -@ 2 | -------------------------------------------------------------------------------- /esercizi/fiori_rampicanti/input-1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/fiori_rampicanti/input-2.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/fiori_rampicanti/input-3.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/fiori_rampicanti/input-4.txt: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /esercizi/fiori_rampicanti/input-5.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/fizzbuzz/expected-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/fizzbuzz/input-1.txt: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /esercizi/fizzbuzz/input-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/fizzbuzz/input-3.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/fizzbuzz/input-4.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/fizzbuzz/input-5.txt: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /esercizi/forza_quattro/expected-1.txt: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /esercizi/forza_quattro/expected-2.txt: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /esercizi/forza_quattro/expected-3.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /esercizi/frazioni_continue/args-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 3 2 | -------------------------------------------------------------------------------- /esercizi/frazioni_continue/args-3.txt: -------------------------------------------------------------------------------- 1 | 3 7 16 2 | -------------------------------------------------------------------------------- /esercizi/genera_quadrato_magico/args-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/genera_quadrato_magico/args-2.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /esercizi/grande_c/input-1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/grande_c/input-2.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/grande_c/input-3.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/grande_c/input-4.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/grande_c_u/input-1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/grande_c_u/input-2.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/grande_c_u/input-3.txt: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /esercizi/grande_c_u/input-4.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/grandissima_c/input-1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/grandissima_c/input-2.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/grandissima_c/input-3.txt: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /esercizi/grandissima_c/input-4.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/greppino/args-1.txt: -------------------------------------------------------------------------------- 1 | 'COZZ#' 2 | -------------------------------------------------------------------------------- /esercizi/greppino/args-2.txt: -------------------------------------------------------------------------------- 1 | 'P#ZZA' 2 | -------------------------------------------------------------------------------- /esercizi/greppino/args-3.txt: -------------------------------------------------------------------------------- 1 | 'x#y' 2 | -------------------------------------------------------------------------------- /esercizi/greppino/args-4.txt: -------------------------------------------------------------------------------- 1 | '#a#' 2 | -------------------------------------------------------------------------------- /esercizi/greppino/args-5.txt: -------------------------------------------------------------------------------- 1 | '###' 2 | -------------------------------------------------------------------------------- /esercizi/greppino/expected-3.txt: -------------------------------------------------------------------------------- 1 | xay 2 | xby 3 | -------------------------------------------------------------------------------- /esercizi/hanoi/input-1.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/hanoi/input-2.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/hanoi/input-3.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/hanoi/input-4.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/incolla_e_rovescia/args-2.txt: -------------------------------------------------------------------------------- 1 | 123 b 2 | -------------------------------------------------------------------------------- /esercizi/incolla_e_rovescia/args-3.txt: -------------------------------------------------------------------------------- 1 | a 123 2 | -------------------------------------------------------------------------------- /esercizi/incolla_e_rovescia/args-4.txt: -------------------------------------------------------------------------------- 1 | a b 2 | -------------------------------------------------------------------------------- /esercizi/incolla_e_rovescia/expected-2.txt: -------------------------------------------------------------------------------- 1 | 123b -------------------------------------------------------------------------------- /esercizi/incolla_e_rovescia/expected-3.txt: -------------------------------------------------------------------------------- 1 | a321 -------------------------------------------------------------------------------- /esercizi/incolla_e_rovescia/expected-4.txt: -------------------------------------------------------------------------------- 1 | ab -------------------------------------------------------------------------------- /esercizi/incornicia_il_nome/input-3.txt: -------------------------------------------------------------------------------- 1 | A 2 | -------------------------------------------------------------------------------- /esercizi/isogramma/expected-1.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/isogramma/expected-2.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/isogramma/expected-3.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/isogramma/expected-4.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/jugs/expected-1.txt: -------------------------------------------------------------------------------- 1 | 0 7 4 2 | -------------------------------------------------------------------------------- /esercizi/jugs/expected-10.txt: -------------------------------------------------------------------------------- 1 | 11 0 0 2 | -------------------------------------------------------------------------------- /esercizi/jugs/expected-11.txt: -------------------------------------------------------------------------------- 1 | 4 7 0 2 | -------------------------------------------------------------------------------- /esercizi/jugs/expected-12.txt: -------------------------------------------------------------------------------- 1 | 0 7 4 2 | -------------------------------------------------------------------------------- /esercizi/jugs/expected-13.txt: -------------------------------------------------------------------------------- 1 | 0 6 5 2 | -------------------------------------------------------------------------------- /esercizi/jugs/expected-2.txt: -------------------------------------------------------------------------------- 1 | 1 7 3 2 | -------------------------------------------------------------------------------- /esercizi/jugs/expected-3.txt: -------------------------------------------------------------------------------- 1 | 4 7 0 2 | -------------------------------------------------------------------------------- /esercizi/jugs/expected-4.txt: -------------------------------------------------------------------------------- 1 | 6 0 5 2 | -------------------------------------------------------------------------------- /esercizi/jugs/expected-5.txt: -------------------------------------------------------------------------------- 1 | 11 0 0 2 | -------------------------------------------------------------------------------- /esercizi/jugs/expected-6.txt: -------------------------------------------------------------------------------- 1 | 11 0 0 2 | -------------------------------------------------------------------------------- /esercizi/jugs/expected-7.txt: -------------------------------------------------------------------------------- 1 | 11 0 0 2 | -------------------------------------------------------------------------------- /esercizi/jugs/expected-8.txt: -------------------------------------------------------------------------------- 1 | 11 0 0 2 | -------------------------------------------------------------------------------- /esercizi/jugs/expected-9.txt: -------------------------------------------------------------------------------- 1 | 11 0 0 2 | -------------------------------------------------------------------------------- /esercizi/jugs/input-10.txt: -------------------------------------------------------------------------------- 1 | b b 2 | -------------------------------------------------------------------------------- /esercizi/jugs/input-2.txt: -------------------------------------------------------------------------------- 1 | a c c b a c c b 2 | -------------------------------------------------------------------------------- /esercizi/jugs/input-3.txt: -------------------------------------------------------------------------------- 1 | a b 2 | -------------------------------------------------------------------------------- /esercizi/jugs/input-4.txt: -------------------------------------------------------------------------------- 1 | a c 2 | -------------------------------------------------------------------------------- /esercizi/jugs/input-5.txt: -------------------------------------------------------------------------------- 1 | b a 2 | -------------------------------------------------------------------------------- /esercizi/jugs/input-6.txt: -------------------------------------------------------------------------------- 1 | b c 2 | -------------------------------------------------------------------------------- /esercizi/jugs/input-7.txt: -------------------------------------------------------------------------------- 1 | c a 2 | -------------------------------------------------------------------------------- /esercizi/jugs/input-8.txt: -------------------------------------------------------------------------------- 1 | c b 2 | -------------------------------------------------------------------------------- /esercizi/jugs/input-9.txt: -------------------------------------------------------------------------------- 1 | a a 2 | -------------------------------------------------------------------------------- /esercizi/kaprekar/expected-3.txt: -------------------------------------------------------------------------------- 1 | 6174 2 | -------------------------------------------------------------------------------- /esercizi/kaprekar/input-1.txt: -------------------------------------------------------------------------------- 1 | 1709 2 | -------------------------------------------------------------------------------- /esercizi/kaprekar/input-2.txt: -------------------------------------------------------------------------------- 1 | 3124 2 | -------------------------------------------------------------------------------- /esercizi/kaprekar/input-3.txt: -------------------------------------------------------------------------------- 1 | 6174 2 | -------------------------------------------------------------------------------- /esercizi/kaprekar/input-4.txt: -------------------------------------------------------------------------------- 1 | 1122 2 | -------------------------------------------------------------------------------- /esercizi/kaprekar/input-5.txt: -------------------------------------------------------------------------------- 1 | 7146 2 | -------------------------------------------------------------------------------- /esercizi/lato_maggiore/expected-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/lato_maggiore/expected-2.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/letterogramma/args-1.txt: -------------------------------------------------------------------------------- 1 | c a l l e 2 | -------------------------------------------------------------------------------- /esercizi/letterogramma/args-2.txt: -------------------------------------------------------------------------------- 1 | x y z 2 | -------------------------------------------------------------------------------- /esercizi/letterogramma/args-3.txt: -------------------------------------------------------------------------------- 1 | a z 2 | -------------------------------------------------------------------------------- /esercizi/letterogramma/args-5.txt: -------------------------------------------------------------------------------- 1 | z a 2 | -------------------------------------------------------------------------------- /esercizi/lychrel/input-1.txt: -------------------------------------------------------------------------------- 1 | 59 2 | -------------------------------------------------------------------------------- /esercizi/lychrel/input-2.txt: -------------------------------------------------------------------------------- 1 | 1709 2 | -------------------------------------------------------------------------------- /esercizi/lychrel/input-3.txt: -------------------------------------------------------------------------------- 1 | 6174 2 | -------------------------------------------------------------------------------- /esercizi/massima_distanza/expected-1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/massima_distanza/expected-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/massima_distanza/expected-3.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/massima_distanza/expected-4.txt: -------------------------------------------------------------------------------- 1 | 996 2 | -------------------------------------------------------------------------------- /esercizi/massima_distanza/expected-5.txt: -------------------------------------------------------------------------------- 1 | 121 2 | -------------------------------------------------------------------------------- /esercizi/massima_somma/expected-1.txt: -------------------------------------------------------------------------------- 1 | 17 2 | -------------------------------------------------------------------------------- /esercizi/massima_somma/expected-2.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/massima_somma/expected-3.txt: -------------------------------------------------------------------------------- 1 | -6 2 | -------------------------------------------------------------------------------- /esercizi/massima_somma/expected-4.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/massima_somma/expected-5.txt: -------------------------------------------------------------------------------- 1 | -2 2 | -------------------------------------------------------------------------------- /esercizi/massima_somma/input-4.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 0 3 | -------------------------------------------------------------------------------- /esercizi/massima_somma/input-5.txt: -------------------------------------------------------------------------------- 1 | -2 2 | 0 3 | -------------------------------------------------------------------------------- /esercizi/massima_stringa/expected-3.txt: -------------------------------------------------------------------------------- 1 | vita 2 | -------------------------------------------------------------------------------- /esercizi/massima_stringa/expected-4.txt: -------------------------------------------------------------------------------- 1 | zona 2 | -------------------------------------------------------------------------------- /esercizi/massima_stringa/expected-5.txt: -------------------------------------------------------------------------------- 1 | ago 2 | -------------------------------------------------------------------------------- /esercizi/massima_stringa/input-5.txt: -------------------------------------------------------------------------------- 1 | ago 2 | -------------------------------------------------------------------------------- /esercizi/massiminimo/input-4.txt: -------------------------------------------------------------------------------- 1 | 1 2 3 2 | -------------------------------------------------------------------------------- /esercizi/massimo_prodotto/expected-1.txt: -------------------------------------------------------------------------------- 1 | 72 2 | -------------------------------------------------------------------------------- /esercizi/massimo_prodotto/expected-2.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/massimo_prodotto/expected-3.txt: -------------------------------------------------------------------------------- 1 | -6 2 | -------------------------------------------------------------------------------- /esercizi/massimo_prodotto/expected-4.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/massimo_prodotto/expected-5.txt: -------------------------------------------------------------------------------- 1 | -2 2 | -------------------------------------------------------------------------------- /esercizi/massimo_tra_due/expected-1.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/massimo_tra_due/expected-3.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/massimo_tra_due/expected-4.txt: -------------------------------------------------------------------------------- 1 | -1 2 | -------------------------------------------------------------------------------- /esercizi/massimo_tra_due/input-1.txt: -------------------------------------------------------------------------------- 1 | 3 10 2 | -------------------------------------------------------------------------------- /esercizi/massimo_tra_due/input-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | -------------------------------------------------------------------------------- /esercizi/massimo_tra_tre/expected-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/massimo_tra_tre/expected-2.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/massimo_tra_tre/expected-3.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/massimo_tra_tre/expected-4.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/massimo_tra_tre/expected-5.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/massimo_tra_tre/expected-6.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/massimo_tra_tre/input-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 3 2 | -------------------------------------------------------------------------------- /esercizi/massimo_tra_tre/input-3.txt: -------------------------------------------------------------------------------- 1 | 1 3 2 2 | -------------------------------------------------------------------------------- /esercizi/massimo_tra_tre/input-4.txt: -------------------------------------------------------------------------------- 1 | 2 1 3 2 | -------------------------------------------------------------------------------- /esercizi/massimo_tra_tre/input-5.txt: -------------------------------------------------------------------------------- 1 | 2 3 1 2 | -------------------------------------------------------------------------------- /esercizi/massimo_tra_tre/input-6.txt: -------------------------------------------------------------------------------- 1 | 3 2 1 2 | -------------------------------------------------------------------------------- /esercizi/mat_max_min/args-1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/mat_max_min/args-2.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/mat_max_min/args-3.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/mat_max_min/expected-1.txt: -------------------------------------------------------------------------------- 1 | 31 2 | -------------------------------------------------------------------------------- /esercizi/mat_max_min/expected-2.txt: -------------------------------------------------------------------------------- 1 | 15 2 | -------------------------------------------------------------------------------- /esercizi/mat_max_min/expected-3.txt: -------------------------------------------------------------------------------- 1 | 35 2 | -------------------------------------------------------------------------------- /esercizi/matrice_circolante/input-3.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/matrice_di_hadamard/args-1.txt: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /esercizi/matrice_di_hadamard/args-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/matrice_di_hadamard/args-3.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/matrice_di_hadamard/args-4.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/matrice_di_hadamard/args-5.txt: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /esercizi/mescola_pari_dispari/args-3.txt: -------------------------------------------------------------------------------- 1 | uno 2 | -------------------------------------------------------------------------------- /esercizi/mescola_parole/expected-3.txt: -------------------------------------------------------------------------------- 1 | adue 2 | -------------------------------------------------------------------------------- /esercizi/mescola_parole/expected-4.txt: -------------------------------------------------------------------------------- 1 | uano 2 | -------------------------------------------------------------------------------- /esercizi/mescola_parole/input-1.txt: -------------------------------------------------------------------------------- 1 | uno due 2 | -------------------------------------------------------------------------------- /esercizi/mescola_parole/input-3.txt: -------------------------------------------------------------------------------- 1 | a due 2 | -------------------------------------------------------------------------------- /esercizi/mescola_parole/input-4.txt: -------------------------------------------------------------------------------- 1 | uno a 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/args-1.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/args-10.txt: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/args-11.txt: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/args-12.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/args-13.txt: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/args-14.txt: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/args-15.txt: -------------------------------------------------------------------------------- 1 | 13 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/args-16.txt: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/args-17.txt: -------------------------------------------------------------------------------- 1 | 15 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/args-18.txt: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/args-19.txt: -------------------------------------------------------------------------------- 1 | 17 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/args-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/args-20.txt: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/args-21.txt: -------------------------------------------------------------------------------- 1 | 19 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/args-22.txt: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/args-23.txt: -------------------------------------------------------------------------------- 1 | 5678 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/args-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/args-4.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/args-5.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/args-6.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/args-7.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/args-8.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/args-9.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/expected-1.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/expected-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/expected-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/expected-4.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/expected-5.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/expected-6.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/expected-7.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/expected-8.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/minima_complessita/expected-9.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/minimo_inventario/input-3.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /esercizi/minimo_tra_quattro/expected-1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/minimo_tra_quattro/expected-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/minimo_tra_quattro/expected-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/minimo_tra_quattro/expected-4.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/minimo_tra_quattro/expected-5.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/minimo_tra_quattro/expected-6.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/minimo_tra_quattro/expected-7.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/minimo_tra_quattro/expected-8.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/minimo_tra_quattro/expected-9.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/movable_do/args-1.txt: -------------------------------------------------------------------------------- 1 | C Do 2 | -------------------------------------------------------------------------------- /esercizi/movable_do/args-2.txt: -------------------------------------------------------------------------------- 1 | C Re 2 | -------------------------------------------------------------------------------- /esercizi/movable_do/args-3.txt: -------------------------------------------------------------------------------- 1 | C Mi 2 | -------------------------------------------------------------------------------- /esercizi/movable_do/args-4.txt: -------------------------------------------------------------------------------- 1 | D Mi 2 | -------------------------------------------------------------------------------- /esercizi/movable_do/args-5.txt: -------------------------------------------------------------------------------- 1 | 'A#' Fa 2 | -------------------------------------------------------------------------------- /esercizi/movable_do/expected-1.txt: -------------------------------------------------------------------------------- 1 | C 2 | -------------------------------------------------------------------------------- /esercizi/movable_do/expected-2.txt: -------------------------------------------------------------------------------- 1 | D 2 | -------------------------------------------------------------------------------- /esercizi/movable_do/expected-3.txt: -------------------------------------------------------------------------------- 1 | E 2 | -------------------------------------------------------------------------------- /esercizi/movable_do/expected-4.txt: -------------------------------------------------------------------------------- 1 | F# 2 | -------------------------------------------------------------------------------- /esercizi/movable_do/expected-5.txt: -------------------------------------------------------------------------------- 1 | D# 2 | -------------------------------------------------------------------------------- /esercizi/nave_piu_lunga/expected-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/nave_piu_lunga/expected-10.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/nave_piu_lunga/expected-11.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /esercizi/nave_piu_lunga/expected-12.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/nave_piu_lunga/expected-13.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/nave_piu_lunga/expected-14.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/nave_piu_lunga/expected-15.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/nave_piu_lunga/expected-2.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /esercizi/nave_piu_lunga/expected-3.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/nave_piu_lunga/expected-4.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /esercizi/nave_piu_lunga/expected-5.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/nave_piu_lunga/expected-6.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/nave_piu_lunga/expected-7.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/nave_piu_lunga/expected-8.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/nave_piu_lunga/expected-9.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /esercizi/nave_spaziale/args-1.txt: -------------------------------------------------------------------------------- 1 | 5 81 2 | -------------------------------------------------------------------------------- /esercizi/nave_spaziale/args-2.txt: -------------------------------------------------------------------------------- 1 | 10 130 2 | -------------------------------------------------------------------------------- /esercizi/nave_spaziale/args-3.txt: -------------------------------------------------------------------------------- 1 | 5 24 2 | -------------------------------------------------------------------------------- /esercizi/nave_spaziale/args-4.txt: -------------------------------------------------------------------------------- 1 | 5 34 2 | -------------------------------------------------------------------------------- /esercizi/nave_spaziale/args-5.txt: -------------------------------------------------------------------------------- 1 | 4 19 2 | -------------------------------------------------------------------------------- /esercizi/nave_spaziale/expected-1.txt: -------------------------------------------------------------------------------- 1 | SSP 2 | -------------------------------------------------------------------------------- /esercizi/nave_spaziale/expected-3.txt: -------------------------------------------------------------------------------- 1 | PS 2 | -------------------------------------------------------------------------------- /esercizi/nave_spaziale/expected-4.txt: -------------------------------------------------------------------------------- 1 | PPPSPP 2 | -------------------------------------------------------------------------------- /esercizi/nave_spaziale/expected-5.txt: -------------------------------------------------------------------------------- 1 | SPPP 2 | -------------------------------------------------------------------------------- /esercizi/ngram/args-1.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/ngram/args-2.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/ngram/args-3.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/ngram/args-4.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/ngram/args-5.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/ngram/args-6.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/ngram/args-7.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/ngram/expected-1.txt: -------------------------------------------------------------------------------- 1 | ma 2 | -------------------------------------------------------------------------------- /esercizi/ngram/expected-2.txt: -------------------------------------------------------------------------------- 1 | cia 2 | -------------------------------------------------------------------------------- /esercizi/ngram/expected-3.txt: -------------------------------------------------------------------------------- 1 | mente 2 | -------------------------------------------------------------------------------- /esercizi/ngram/expected-4.txt: -------------------------------------------------------------------------------- 1 | ammali 2 | -------------------------------------------------------------------------------- /esercizi/ngram/expected-5.txt: -------------------------------------------------------------------------------- 1 | uc 2 | -------------------------------------------------------------------------------- /esercizi/ngram/expected-6.txt: -------------------------------------------------------------------------------- 1 | uet 2 | -------------------------------------------------------------------------------- /esercizi/ngram/expected-7.txt: -------------------------------------------------------------------------------- 1 | yxql 2 | -------------------------------------------------------------------------------- /esercizi/ngram/input-1.txt: -------------------------------------------------------------------------------- 1 | ciao*mamma 2 | -------------------------------------------------------------------------------- /esercizi/ngram/input-2.txt: -------------------------------------------------------------------------------- 1 | ciao*mamma 2 | -------------------------------------------------------------------------------- /esercizi/ngram/input-3.txt: -------------------------------------------------------------------------------- 1 | ammaliatamentemente -------------------------------------------------------------------------------- /esercizi/ngram/input-4.txt: -------------------------------------------------------------------------------- 1 | ammaliatamentemente -------------------------------------------------------------------------------- /esercizi/numeri_felici/expected-1.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/numeri_felici/expected-2.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/numeri_felici/expected-3.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/numeri_felici/expected-4.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/numeri_felici/expected-5.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/numeri_felici/expected-6.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/numeri_felici/expected-7.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/numeri_felici/expected-8.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/numeri_felici/input-1.txt: -------------------------------------------------------------------------------- 1 | 13 2 | -------------------------------------------------------------------------------- /esercizi/numeri_felici/input-2.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/numeri_felici/input-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/numeri_felici/input-4.txt: -------------------------------------------------------------------------------- 1 | 145 2 | -------------------------------------------------------------------------------- /esercizi/numeri_felici/input-5.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/numeri_felici/input-6.txt: -------------------------------------------------------------------------------- 1 | 1451 2 | -------------------------------------------------------------------------------- /esercizi/numeri_felici/input-7.txt: -------------------------------------------------------------------------------- 1 | 145145 2 | -------------------------------------------------------------------------------- /esercizi/numeri_felici/input-8.txt: -------------------------------------------------------------------------------- 1 | 2020 2 | -------------------------------------------------------------------------------- /esercizi/numeri_fortunati/args-1.txt: -------------------------------------------------------------------------------- 1 | 26 2 | -------------------------------------------------------------------------------- /esercizi/numeri_fortunati/args-2.txt: -------------------------------------------------------------------------------- 1 | 50 2 | -------------------------------------------------------------------------------- /esercizi/numeri_fortunati/args-3.txt: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /esercizi/numeri_fortunati/args-4.txt: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /esercizi/numeri_narcisi/expected-1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/numeri_narcisi/expected-2.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/numeri_narcisi/expected-3.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/numeri_narcisi/expected-4.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/numeri_narcisi/expected-5.txt: -------------------------------------------------------------------------------- 1 | 34 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-1.txt: -------------------------------------------------------------------------------- 1 | 7211311 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-10.txt: -------------------------------------------------------------------------------- 1 | 1101 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-11.txt: -------------------------------------------------------------------------------- 1 | 1102 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-12.txt: -------------------------------------------------------------------------------- 1 | 1121 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-13.txt: -------------------------------------------------------------------------------- 1 | 1122 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-14.txt: -------------------------------------------------------------------------------- 1 | 11311 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-15.txt: -------------------------------------------------------------------------------- 1 | 11312 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-16.txt: -------------------------------------------------------------------------------- 1 | 31101 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-17.txt: -------------------------------------------------------------------------------- 1 | 31102 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-18.txt: -------------------------------------------------------------------------------- 1 | 40210 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-19.txt: -------------------------------------------------------------------------------- 1 | 40211 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-2.txt: -------------------------------------------------------------------------------- 1 | 13 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-20.txt: -------------------------------------------------------------------------------- 1 | 340210 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-21.txt: -------------------------------------------------------------------------------- 1 | 340211 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-22.txt: -------------------------------------------------------------------------------- 1 | 4620020 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-23.txt: -------------------------------------------------------------------------------- 1 | 4620021 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-24.txt: -------------------------------------------------------------------------------- 1 | 5431101 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-25.txt: -------------------------------------------------------------------------------- 1 | 5431102 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-26.txt: -------------------------------------------------------------------------------- 1 | 7211311 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-27.txt: -------------------------------------------------------------------------------- 1 | 7211312 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-28.txt: -------------------------------------------------------------------------------- 1 | 12040210 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-29.txt: -------------------------------------------------------------------------------- 1 | 12040211 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-3.txt: -------------------------------------------------------------------------------- 1 | 8084220020 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-30.txt: -------------------------------------------------------------------------------- 1 | 9117311311 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-31.txt: -------------------------------------------------------------------------------- 1 | 9117311312 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-4.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-5.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-6.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-7.txt: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-8.txt: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/args-9.txt: -------------------------------------------------------------------------------- 1 | 21 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-1.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-10.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-11.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-12.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-13.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-14.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-15.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-16.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-17.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-18.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-19.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-2.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-20.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-21.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-22.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-23.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-24.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-25.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-26.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-27.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-28.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-29.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-3.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-30.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-31.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-4.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-5.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-6.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-7.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-8.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/numeri_scala/expected-9.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/numero_cancellato/expected-2.txt: -------------------------------------------------------------------------------- 1 | 46 2 | -------------------------------------------------------------------------------- /esercizi/numero_cancellato/expected-3.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/numero_cancellato/expected-4.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/numero_cancellato/expected-5.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/numero_cancellato/input-2.txt: -------------------------------------------------------------------------------- 1 | 21#3 2 | -------------------------------------------------------------------------------- /esercizi/numero_cancellato/input-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/numero_cancellato/input-4.txt: -------------------------------------------------------------------------------- 1 | 1# 2 | -------------------------------------------------------------------------------- /esercizi/numero_cancellato/input-5.txt: -------------------------------------------------------------------------------- 1 | 23# 2 | -------------------------------------------------------------------------------- /esercizi/numero_misterioso/args-2.txt: -------------------------------------------------------------------------------- 1 | 123 2 | -------------------------------------------------------------------------------- /esercizi/numero_misterioso/args-3.txt: -------------------------------------------------------------------------------- 1 | 1a 2 | -------------------------------------------------------------------------------- /esercizi/numero_misterioso/args-4.txt: -------------------------------------------------------------------------------- 1 | a1 2 | -------------------------------------------------------------------------------- /esercizi/numero_misterioso/expected-3.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/numero_misterioso/expected-4.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/operaio_pigro/args-2.txt: -------------------------------------------------------------------------------- 1 | L L L L L 2 | -------------------------------------------------------------------------------- /esercizi/operaio_pigro/args-3.txt: -------------------------------------------------------------------------------- 1 | R R R R R 2 | -------------------------------------------------------------------------------- /esercizi/operaio_pigro/expected-1.txt: -------------------------------------------------------------------------------- 1 | 26 2 | -------------------------------------------------------------------------------- /esercizi/operaio_pigro/expected-2.txt: -------------------------------------------------------------------------------- 1 | 31 2 | -------------------------------------------------------------------------------- /esercizi/operaio_pigro/expected-3.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/operaio_pigro/expected-4.txt: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /esercizi/ordinali_von_neumann/args-1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/ordinali_von_neumann/args-2.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/ordinali_von_neumann/args-3.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/ordinali_von_neumann/args-4.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/ordinali_von_neumann/args-5.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/palindroma/expected-1.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/palindroma/input-1.txt: -------------------------------------------------------------------------------- 1 | otto 2 | -------------------------------------------------------------------------------- /esercizi/palindroma/input-2.txt: -------------------------------------------------------------------------------- 1 | pippo 2 | -------------------------------------------------------------------------------- /esercizi/palindroma_r/expected-1.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/palindroma_r/expected-3.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/palindroma_r/expected-4.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/palindroma_r/expected-5.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/palindroma_r/input-1.txt: -------------------------------------------------------------------------------- 1 | otto 2 | -------------------------------------------------------------------------------- /esercizi/palindroma_r/input-2.txt: -------------------------------------------------------------------------------- 1 | pippo 2 | -------------------------------------------------------------------------------- /esercizi/palindroma_r/input-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/palindroma_r/input-4.txt: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /esercizi/palindroma_r/input-5.txt: -------------------------------------------------------------------------------- 1 | abcba 2 | -------------------------------------------------------------------------------- /esercizi/parola_piu_pesante/expected-1.txt: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /esercizi/parola_piu_pesante/expected-2.txt: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /esercizi/parola_piu_pesante/expected-3.txt: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /esercizi/parola_piu_pesante/expected-4.txt: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /esercizi/parola_piu_pesante/expected-5.txt: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /esercizi/parole_crescenti/expected-1.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/parole_crescenti/expected-2.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/parole_crescenti/expected-3.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/parole_crescenti/expected-4.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/parole_graziose/args-3.txt: -------------------------------------------------------------------------------- 1 | aab bbc 2 | -------------------------------------------------------------------------------- /esercizi/parole_graziose/args-5.txt: -------------------------------------------------------------------------------- 1 | xxx 2 | -------------------------------------------------------------------------------- /esercizi/parole_graziose/args-6.txt: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /esercizi/parole_graziose/expected-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/parole_graziose/expected-2.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/parole_graziose/expected-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/parole_graziose/expected-4.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/parole_graziose/expected-5.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/parole_graziose/expected-6.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/parole_graziose_stdin/input-6.txt: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /esercizi/parole_incatenate/expected-1.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/parole_incatenate/expected-2.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/parole_incatenate/expected-3.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/parole_incatenate/expected-4.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/parole_incatenate/expected-5.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/parole_inverse/args-2.txt: -------------------------------------------------------------------------------- 1 | java ava 2 | -------------------------------------------------------------------------------- /esercizi/parole_inverse/args-6.txt: -------------------------------------------------------------------------------- 1 | mica vero 2 | -------------------------------------------------------------------------------- /esercizi/parole_inverse/expected-1.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/parole_inverse/expected-5.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/parole_proibite/args-1.txt: -------------------------------------------------------------------------------- 1 | 5 2 2 | -------------------------------------------------------------------------------- /esercizi/parole_proibite/args-2.txt: -------------------------------------------------------------------------------- 1 | 5 1 2 | -------------------------------------------------------------------------------- /esercizi/parole_proibite/args-3.txt: -------------------------------------------------------------------------------- 1 | 0 0 2 | -------------------------------------------------------------------------------- /esercizi/parole_proibite/args-4.txt: -------------------------------------------------------------------------------- 1 | 2 2 2 | -------------------------------------------------------------------------------- /esercizi/parole_proibite/args-5.txt: -------------------------------------------------------------------------------- 1 | 10 5 2 | -------------------------------------------------------------------------------- /esercizi/parole_proibite/input-3.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /esercizi/patapum/args-1.txt: -------------------------------------------------------------------------------- 1 | 13 2 | -------------------------------------------------------------------------------- /esercizi/patapum/args-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/patapum/args-3.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/patapum/args-4.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/patapum/args-5.txt: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /esercizi/patapum/expected-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/pile_di_interi/args-1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/pile_di_interi/args-2.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/pile_di_interi/args-3.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/pile_di_interi/args-4.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/pile_di_interi/args-5.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/pile_di_stringhe/args-1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/pile_di_stringhe/args-2.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/pile_di_stringhe/args-3.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/pile_di_stringhe/args-4.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/pile_di_stringhe/args-5.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/pipe/args-1.txt: -------------------------------------------------------------------------------- 1 | 2 asagaagga 2 | -------------------------------------------------------------------------------- /esercizi/pipe/args-2.txt: -------------------------------------------------------------------------------- 1 | 1 as 2 | -------------------------------------------------------------------------------- /esercizi/pipe/args-3.txt: -------------------------------------------------------------------------------- 1 | 1 ag 2 | -------------------------------------------------------------------------------- /esercizi/pipe/args-4.txt: -------------------------------------------------------------------------------- 1 | 1 agasa 2 | -------------------------------------------------------------------------------- /esercizi/pipe/args-5.txt: -------------------------------------------------------------------------------- 1 | 1 asaga 2 | -------------------------------------------------------------------------------- /esercizi/piramide_di_numeri/args-1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/piramide_di_numeri/args-2.txt: -------------------------------------------------------------------------------- 1 | 15 2 | -------------------------------------------------------------------------------- /esercizi/piramide_di_numeri/args-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/piramide_di_numeri/args-4.txt: -------------------------------------------------------------------------------- 1 | 13 2 | -------------------------------------------------------------------------------- /esercizi/piramide_di_numeri/args-5.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/piramide_di_numeri/expected-3.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/pochi_zero/args-1.txt: -------------------------------------------------------------------------------- 1 | 1001 23 420 1 2 | -------------------------------------------------------------------------------- /esercizi/pochi_zero/args-2.txt: -------------------------------------------------------------------------------- 1 | 200 100 300 2 | -------------------------------------------------------------------------------- /esercizi/pochi_zero/args-3.txt: -------------------------------------------------------------------------------- 1 | 11 22 2 | -------------------------------------------------------------------------------- /esercizi/pochi_zero/args-4.txt: -------------------------------------------------------------------------------- 1 | 1 10000000 2 | -------------------------------------------------------------------------------- /esercizi/pochi_zero/args-5.txt: -------------------------------------------------------------------------------- 1 | 10000000 1 2 | -------------------------------------------------------------------------------- /esercizi/pochi_zero/expected-1.txt: -------------------------------------------------------------------------------- 1 | 420 2 | -------------------------------------------------------------------------------- /esercizi/pochi_zero/expected-2.txt: -------------------------------------------------------------------------------- 1 | 200 2 | -------------------------------------------------------------------------------- /esercizi/pochi_zero/expected-4.txt: -------------------------------------------------------------------------------- 1 | 10000000 2 | -------------------------------------------------------------------------------- /esercizi/pochi_zero/expected-5.txt: -------------------------------------------------------------------------------- 1 | 10000000 2 | -------------------------------------------------------------------------------- /esercizi/potenze_r/expected-3.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/potenze_r/expected-4.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/potenze_r/input-1.txt: -------------------------------------------------------------------------------- 1 | 2 256 2 | -------------------------------------------------------------------------------- /esercizi/potenze_r/input-2.txt: -------------------------------------------------------------------------------- 1 | 3 81 2 | -------------------------------------------------------------------------------- /esercizi/potenze_r/input-3.txt: -------------------------------------------------------------------------------- 1 | 0 10 2 | -------------------------------------------------------------------------------- /esercizi/potenze_r/input-4.txt: -------------------------------------------------------------------------------- 1 | 10 0 2 | -------------------------------------------------------------------------------- /esercizi/potenze_r/input-5.txt: -------------------------------------------------------------------------------- 1 | 123 456 2 | -------------------------------------------------------------------------------- /esercizi/prefisso/args-1.txt: -------------------------------------------------------------------------------- 1 | ci ciao 2 | -------------------------------------------------------------------------------- /esercizi/prefisso/args-2.txt: -------------------------------------------------------------------------------- 1 | nonno zio 2 | -------------------------------------------------------------------------------- /esercizi/prefisso/args-3.txt: -------------------------------------------------------------------------------- 1 | ciao ci 2 | -------------------------------------------------------------------------------- /esercizi/prefisso/args-4.txt: -------------------------------------------------------------------------------- 1 | ciao ciao 2 | -------------------------------------------------------------------------------- /esercizi/prefisso/args-5.txt: -------------------------------------------------------------------------------- 1 | x y 2 | -------------------------------------------------------------------------------- /esercizi/prefisso/expected-1.txt: -------------------------------------------------------------------------------- 1 | prefisso 2 | -------------------------------------------------------------------------------- /esercizi/prodotto_dispari/expected-1.txt: -------------------------------------------------------------------------------- 1 | 21 2 | -------------------------------------------------------------------------------- /esercizi/prodotto_dispari/expected-2.txt: -------------------------------------------------------------------------------- 1 | 441 2 | -------------------------------------------------------------------------------- /esercizi/prodotto_dispari/expected-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/prodotto_dispari/expected-4.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/prodotto_dispari/expected-5.txt: -------------------------------------------------------------------------------- 1 | 345 2 | -------------------------------------------------------------------------------- /esercizi/prodotto_dispari/input-4.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/prova_del_nove/input-1.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/prova_del_nove/input-2.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/prova_del_nove/input-3.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/prova_del_nove/input-4.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/prova_del_nove/input-5.txt: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /esercizi/quanti_massimi/expected-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/quanti_massimi/expected-2.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/quanti_massimi/expected-3.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/quanti_massimi/expected-4.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/quanti_massimi/expected-5.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/quanti_massimi/input-2.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/quanti_minimi/expected-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/quanti_minimi/expected-2.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/quanti_minimi/expected-3.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/quanti_minimi/expected-4.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/quanti_minimi/expected-5.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/quanti_minimi/input-2.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/quasi_uguali/expected-8.txt: -------------------------------------------------------------------------------- 1 | s 2 | -------------------------------------------------------------------------------- /esercizi/righello/expected-1.txt: -------------------------------------------------------------------------------- 1 | - 2 | -------------------------------------------------------------------------------- /esercizi/righello/input-1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/righello/input-2.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/righello/input-3.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/righello/input-4.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/righello/input-5.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/righello_orizzontale/input-1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/righello_orizzontale/input-2.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/righello_orizzontale/input-3.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/righello_orizzontale/input-4.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/righello_orizzontale/input-5.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/righello_orizzontale/input-6.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/rimpiazza/args-1.txt: -------------------------------------------------------------------------------- 1 | CIAO 2 | -------------------------------------------------------------------------------- /esercizi/rimpiazza/args-2.txt: -------------------------------------------------------------------------------- 1 | 12345 2 | -------------------------------------------------------------------------------- /esercizi/rimpiazza/args-3.txt: -------------------------------------------------------------------------------- 1 | @ 2 | -------------------------------------------------------------------------------- /esercizi/rimpiazza/args-6.txt: -------------------------------------------------------------------------------- 1 | CIAO 2 | -------------------------------------------------------------------------------- /esercizi/rpn_evaluator/expected-2.txt: -------------------------------------------------------------------------------- 1 | 77 2 | -------------------------------------------------------------------------------- /esercizi/rpn_evaluator/expected-4.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/rpn_evaluator/expected-5.txt: -------------------------------------------------------------------------------- 1 | 3856 2 | -------------------------------------------------------------------------------- /esercizi/rpn_token/expected-2.txt: -------------------------------------------------------------------------------- 1 | O + 2 | -------------------------------------------------------------------------------- /esercizi/rpn_token/expected-3.txt: -------------------------------------------------------------------------------- 1 | V 23 2 | -------------------------------------------------------------------------------- /esercizi/rpn_token/input-2.txt: -------------------------------------------------------------------------------- 1 | + 2 | -------------------------------------------------------------------------------- /esercizi/rpn_token/input-3.txt: -------------------------------------------------------------------------------- 1 | 23 2 | -------------------------------------------------------------------------------- /esercizi/saltapicchio/args-1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/saltapicchio/args-2.txt: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /esercizi/saltapicchio/args-3.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/saltapicchio/args-4.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/saltapicchio/args-5.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/saltapicchio/args-6.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/saltapicchio/input-1.txt: -------------------------------------------------------------------------------- 1 | 1 4 2 3 2 | -------------------------------------------------------------------------------- /esercizi/saltapicchio/input-3.txt: -------------------------------------------------------------------------------- 1 | 1 4 2 -1 6 2 | -------------------------------------------------------------------------------- /esercizi/saltapicchio/input-6.txt: -------------------------------------------------------------------------------- 1 | 2 -1 0 2 2 | -------------------------------------------------------------------------------- /esercizi/salve_tutti/args-1.txt: -------------------------------------------------------------------------------- 1 | mondo 2 | -------------------------------------------------------------------------------- /esercizi/salve_tutti/args-2.txt: -------------------------------------------------------------------------------- 1 | universo 2 | -------------------------------------------------------------------------------- /esercizi/salve_tutti/args-3.txt: -------------------------------------------------------------------------------- 1 | non proprio 2 | -------------------------------------------------------------------------------- /esercizi/salve_tutti/expected-1.txt: -------------------------------------------------------------------------------- 1 | Salve, mondo! -------------------------------------------------------------------------------- /esercizi/salve_tutti/expected-3.txt: -------------------------------------------------------------------------------- 1 | Salve, non! -------------------------------------------------------------------------------- /esercizi/scala_discendente/input-3.txt: -------------------------------------------------------------------------------- 1 | 4 3 2 2 | -------------------------------------------------------------------------------- /esercizi/scale/expected-1.txt: -------------------------------------------------------------------------------- 1 | -1 2 | -------------------------------------------------------------------------------- /esercizi/scale/expected-2.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/scale/expected-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/seleziona_colonna/args-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/seleziona_colonna/args-2.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/seleziona_colonna/args-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/seleziona_colonna/args-4.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/seleziona_colonna/args-5.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/seleziona_riga/args-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/seleziona_riga/args-2.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/seleziona_riga/args-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/seleziona_riga/args-4.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/seleziona_riga/args-5.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/seleziona_riga/expected-2.txt: -------------------------------------------------------------------------------- 1 | uno 2 | -------------------------------------------------------------------------------- /esercizi/seleziona_riga/expected-3.txt: -------------------------------------------------------------------------------- 1 | due 2 | -------------------------------------------------------------------------------- /esercizi/sequenze_di_collatz/input-1.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /esercizi/sequenze_di_collatz/input-2.txt: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /esercizi/sequenze_di_collatz/input-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/sequenze_di_collatz/input-4.txt: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /esercizi/sequenze_di_collatz/input-5.txt: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /esercizi/sequenze_monotone/expected-1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/sequenze_monotone/expected-2.txt: -------------------------------------------------------------------------------- 1 | -1 2 | -------------------------------------------------------------------------------- /esercizi/sequenze_monotone/expected-3.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/sequenze_monotone/expected-4.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/sequenze_monotone/expected-5.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/sequenze_monotone/input-3.txt: -------------------------------------------------------------------------------- 1 | 1 1 2 | -------------------------------------------------------------------------------- /esercizi/serpente_lettere/args-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/serpente_lettere/args-2.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/serpente_lettere/args-3.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /esercizi/serpente_lettere/args-4.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/serpente_lettere/expected-4.txt: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /esercizi/serpente_numeri/args-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/serpente_numeri/args-2.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/serpente_numeri/args-3.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /esercizi/serpente_numeri/args-4.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/serpente_numeri/expected-4.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/somma_alternata/expected-1.txt: -------------------------------------------------------------------------------- 1 | -6 2 | -------------------------------------------------------------------------------- /esercizi/somma_alternata/expected-2.txt: -------------------------------------------------------------------------------- 1 | -1 2 | -------------------------------------------------------------------------------- /esercizi/somma_alternata/expected-4.txt: -------------------------------------------------------------------------------- 1 | -524 2 | -------------------------------------------------------------------------------- /esercizi/somma_argomenti/args-1.txt: -------------------------------------------------------------------------------- 1 | 1 2 4 2 | -------------------------------------------------------------------------------- /esercizi/somma_argomenti/expected-1.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /esercizi/somma_dagli_estremi/args-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/somma_dagli_estremi/args-2.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/somma_dagli_estremi/args-3.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/somma_dagli_estremi/args-4.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/somma_dagli_estremi/args-5.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/somma_dal_centro/args-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/somma_dal_centro/args-2.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/somma_dal_centro/args-3.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/somma_dal_centro/args-4.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/somma_dal_centro/args-5.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/somma_dal_centro/expected-1.txt: -------------------------------------------------------------------------------- 1 | 37 2 | -------------------------------------------------------------------------------- /esercizi/somma_dal_centro/expected-2.txt: -------------------------------------------------------------------------------- 1 | 21 2 | -------------------------------------------------------------------------------- /esercizi/somma_dal_centro/expected-3.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/somma_dal_centro/expected-4.txt: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /esercizi/somma_dal_centro/expected-5.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/somma_e_salta/args-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/somma_e_salta/args-2.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/somma_e_salta/args-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/somma_e_salta/args-4.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/somma_e_salta/args-5.txt: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /esercizi/somma_e_salta/expected-1.txt: -------------------------------------------------------------------------------- 1 | 15 2 | -------------------------------------------------------------------------------- /esercizi/somma_e_salta/expected-2.txt: -------------------------------------------------------------------------------- 1 | 5500 2 | -------------------------------------------------------------------------------- /esercizi/somma_e_salta/expected-3.txt: -------------------------------------------------------------------------------- 1 | 2500 2 | -------------------------------------------------------------------------------- /esercizi/somma_e_salta/expected-4.txt: -------------------------------------------------------------------------------- 1 | 2200 2 | -------------------------------------------------------------------------------- /esercizi/somma_e_salta/expected-5.txt: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /esercizi/somma_e_sottrai/expected-1.txt: -------------------------------------------------------------------------------- 1 | -21 2 | -------------------------------------------------------------------------------- /esercizi/somma_e_sottrai/expected-2.txt: -------------------------------------------------------------------------------- 1 | -31 2 | -------------------------------------------------------------------------------- /esercizi/somma_e_sottrai/expected-3.txt: -------------------------------------------------------------------------------- 1 | 21 2 | -------------------------------------------------------------------------------- /esercizi/somma_e_sottrai/expected-4.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/somma_e_sottrai/expected-5.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/somma_interi/expected-1.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /esercizi/somma_interi/expected-2.txt: -------------------------------------------------------------------------------- 1 | 77 2 | -------------------------------------------------------------------------------- /esercizi/somma_interi_positivi/input-4.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/somma_multipli/expected-1.txt: -------------------------------------------------------------------------------- 1 | 33 2 | -------------------------------------------------------------------------------- /esercizi/somma_multipli/expected-2.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/somma_multipli/expected-3.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/somma_multipli/expected-4.txt: -------------------------------------------------------------------------------- 1 | 15 2 | -------------------------------------------------------------------------------- /esercizi/somma_multipli/input-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 3 0 2 | -------------------------------------------------------------------------------- /esercizi/somma_parole_pari/expected-1.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/somma_parole_pari/expected-2.txt: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /esercizi/somma_parole_pari/expected-3.txt: -------------------------------------------------------------------------------- 1 | 48 2 | -------------------------------------------------------------------------------- /esercizi/somma_positiva/expected-1.txt: -------------------------------------------------------------------------------- 1 | 15 2 | -------------------------------------------------------------------------------- /esercizi/somma_positiva/expected-2.txt: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /esercizi/somma_positiva/expected-3.txt: -------------------------------------------------------------------------------- 1 | 24 2 | -------------------------------------------------------------------------------- /esercizi/somma_positiva/expected-4.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/somma_positiva/expected-5.txt: -------------------------------------------------------------------------------- 1 | 420 2 | -------------------------------------------------------------------------------- /esercizi/somma_positiva/input-4.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/somma_strana/args-1.txt: -------------------------------------------------------------------------------- 1 | 103 39 2 | -------------------------------------------------------------------------------- /esercizi/somma_strana/args-2.txt: -------------------------------------------------------------------------------- 1 | 1146 2097 2 | -------------------------------------------------------------------------------- /esercizi/somma_strana/args-3.txt: -------------------------------------------------------------------------------- 1 | 4 4 2 | -------------------------------------------------------------------------------- /esercizi/somma_strana/args-4.txt: -------------------------------------------------------------------------------- 1 | 5 5 2 | -------------------------------------------------------------------------------- /esercizi/somma_strana/expected-1.txt: -------------------------------------------------------------------------------- 1 | 147 -------------------------------------------------------------------------------- /esercizi/somma_strana/expected-2.txt: -------------------------------------------------------------------------------- 1 | 3256 -------------------------------------------------------------------------------- /esercizi/somma_strana/expected-3.txt: -------------------------------------------------------------------------------- 1 | 8 -------------------------------------------------------------------------------- /esercizi/somma_strana/expected-4.txt: -------------------------------------------------------------------------------- 1 | 19 -------------------------------------------------------------------------------- /esercizi/somma_telescopica/expected-1.txt: -------------------------------------------------------------------------------- 1 | -6 2 | -------------------------------------------------------------------------------- /esercizi/somma_tre_reali/expected-1.txt: -------------------------------------------------------------------------------- 1 | 1.5 2 | -------------------------------------------------------------------------------- /esercizi/somma_tre_reali/expected-3.txt: -------------------------------------------------------------------------------- 1 | 7.0 2 | -------------------------------------------------------------------------------- /esercizi/sottoinsieme/expected-1.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/sottoinsieme/expected-2.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/sottoinsieme/expected-3.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/sottoinsieme/expected-4.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/sottoinsieme/expected-5.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/sottoinsieme/expected-6.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/sottoinsieme/expected-7.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/sottoinsieme/expected-8.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/sottoinsieme/expected-9.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/sottostringhe/args-1.txt: -------------------------------------------------------------------------------- 1 | cane 3 2 | -------------------------------------------------------------------------------- /esercizi/sottostringhe/args-2.txt: -------------------------------------------------------------------------------- 1 | cassa 3 2 | -------------------------------------------------------------------------------- /esercizi/spirale/args-1.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/spirale/args-2.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/spirale/args-3.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/spirale/args-4.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/spirale/args-5.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /esercizi/steganografia/expected-2.txt: -------------------------------------------------------------------------------- 1 | 123 2 | -------------------------------------------------------------------------------- /esercizi/steganografia/expected-3.txt: -------------------------------------------------------------------------------- 1 | a*b* 2 | -------------------------------------------------------------------------------- /esercizi/steganografia/expected-4.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /esercizi/steganografia/expected-5.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /esercizi/steganografia/input-3.txt: -------------------------------------------------------------------------------- 1 | a**b**. 2 | -------------------------------------------------------------------------------- /esercizi/steganografia/input-4.txt: -------------------------------------------------------------------------------- 1 | abc. 2 | -------------------------------------------------------------------------------- /esercizi/steganografia/input-5.txt: -------------------------------------------------------------------------------- 1 | *ciao. 2 | -------------------------------------------------------------------------------- /esercizi/stringa_piu_lunga/input-5.txt: -------------------------------------------------------------------------------- 1 | ago 2 | -------------------------------------------------------------------------------- /esercizi/studiare_stanca/expected-1.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/studiare_stanca/expected-2.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/studiare_stanca/expected-3.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/studiare_stanca/expected-4.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/studiare_stanca/expected-5.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/suffisso/args-1.txt: -------------------------------------------------------------------------------- 1 | ao ciao 2 | -------------------------------------------------------------------------------- /esercizi/suffisso/args-2.txt: -------------------------------------------------------------------------------- 1 | nonno zio 2 | -------------------------------------------------------------------------------- /esercizi/suffisso/args-3.txt: -------------------------------------------------------------------------------- 1 | ciao ci 2 | -------------------------------------------------------------------------------- /esercizi/suffisso/args-4.txt: -------------------------------------------------------------------------------- 1 | ciao ciao 2 | -------------------------------------------------------------------------------- /esercizi/suffisso/args-5.txt: -------------------------------------------------------------------------------- 1 | ino pino 2 | -------------------------------------------------------------------------------- /esercizi/suffisso/expected-1.txt: -------------------------------------------------------------------------------- 1 | suffisso 2 | -------------------------------------------------------------------------------- /esercizi/suffisso/expected-5.txt: -------------------------------------------------------------------------------- 1 | suffisso 2 | -------------------------------------------------------------------------------- /esercizi/tante_esse/args-3.txt: -------------------------------------------------------------------------------- 1 | no no 2 | -------------------------------------------------------------------------------- /esercizi/tante_esse/expected-1.txt: -------------------------------------------------------------------------------- 1 | sorpassa 2 | -------------------------------------------------------------------------------- /esercizi/tante_esse/expected-2.txt: -------------------------------------------------------------------------------- 1 | possa 2 | -------------------------------------------------------------------------------- /esercizi/tanto_sole/expected-1.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/tanto_sole/expected-2.txt: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /esercizi/tanto_sole/expected-3.txt: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /esercizi/tanto_sole/expected-4.txt: -------------------------------------------------------------------------------- 1 | 17 2 | -------------------------------------------------------------------------------- /esercizi/tanto_sole/expected-5.txt: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /esercizi/tanto_sole/expected-6.txt: -------------------------------------------------------------------------------- 1 | 17 2 | -------------------------------------------------------------------------------- /esercizi/tanto_sole/expected-7.txt: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /esercizi/tanto_sole/expected-8.txt: -------------------------------------------------------------------------------- 1 | 17 2 | -------------------------------------------------------------------------------- /esercizi/tanto_sole/expected-9.txt: -------------------------------------------------------------------------------- 1 | 15 2 | -------------------------------------------------------------------------------- /esercizi/tartaglia/expected-1.txt: -------------------------------------------------------------------------------- 1 | 1 4 6 4 1 2 | -------------------------------------------------------------------------------- /esercizi/tartaglia/expected-4.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/tartaglia/input-1.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/tartaglia/input-2.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/tartaglia/input-3.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /esercizi/tartaglia/input-4.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/ticotaco/expected-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/ticotaco/input-1.txt: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /esercizi/ticotaco/input-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/ticotaco/input-3.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/ticotaco/input-4.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/ticotaco/input-5.txt: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /esercizi/tra_parentesi/expected-1.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/tra_parentesi/expected-10.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/tra_parentesi/expected-11.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/tra_parentesi/expected-2.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/tra_parentesi/expected-3.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/tra_parentesi/expected-4.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/tra_parentesi/expected-5.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/tra_parentesi/expected-6.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/tra_parentesi/expected-7.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/tra_parentesi/expected-8.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/tra_parentesi/expected-9.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/tra_parentesi/input-1.txt: -------------------------------------------------------------------------------- 1 | ()() 2 | -------------------------------------------------------------------------------- /esercizi/tra_parentesi/input-10.txt: -------------------------------------------------------------------------------- 1 | ]]][[[() 2 | -------------------------------------------------------------------------------- /esercizi/tra_parentesi/input-11.txt: -------------------------------------------------------------------------------- 1 | ]} 2 | -------------------------------------------------------------------------------- /esercizi/tra_parentesi/input-4.txt: -------------------------------------------------------------------------------- 1 | (]) 2 | -------------------------------------------------------------------------------- /esercizi/tra_parentesi/input-5.txt: -------------------------------------------------------------------------------- 1 | {(}) 2 | -------------------------------------------------------------------------------- /esercizi/tra_parentesi/input-6.txt: -------------------------------------------------------------------------------- 1 | ([)) 2 | -------------------------------------------------------------------------------- /esercizi/tra_parentesi/input-8.txt: -------------------------------------------------------------------------------- 1 | [][]) 2 | -------------------------------------------------------------------------------- /esercizi/tra_parentesi/input-9.txt: -------------------------------------------------------------------------------- 1 | ][)(}{ 2 | -------------------------------------------------------------------------------- /esercizi/trasponi_matrice/args-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 2 | -------------------------------------------------------------------------------- /esercizi/trasponi_matrice/args-2.txt: -------------------------------------------------------------------------------- 1 | 1 3 2 | -------------------------------------------------------------------------------- /esercizi/trasponi_matrice/args-3.txt: -------------------------------------------------------------------------------- 1 | 2 3 2 | -------------------------------------------------------------------------------- /esercizi/trasponi_matrice/args-4.txt: -------------------------------------------------------------------------------- 1 | 3 1 2 | -------------------------------------------------------------------------------- /esercizi/trasponi_matrice/input-2.txt: -------------------------------------------------------------------------------- 1 | 1 2 3 2 | -------------------------------------------------------------------------------- /esercizi/trenino/expected-1.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/trenino/expected-2.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/trenino/expected-3.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/trenino/expected-4.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/trenino/expected-5.txt: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /esercizi/trenino/expected-6.txt: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /esercizi/trenino/input-2.txt: -------------------------------------------------------------------------------- 1 | >==> >==> 2 | 3 | -------------------------------------------------------------------------------- /esercizi/trenino/input-6.txt: -------------------------------------------------------------------------------- 1 | <==> 2 | -------------------------------------------------------------------------------- /esercizi/trova_ultimo/args-1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/trova_ultimo/args-2.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/trova_ultimo/args-3.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/trova_ultimo/args-4.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/trova_ultimo/args-5.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/trova_ultimo/expected-1.txt: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /esercizi/trova_ultimo/expected-2.txt: -------------------------------------------------------------------------------- 1 | -1 -------------------------------------------------------------------------------- /esercizi/trova_ultimo/expected-3.txt: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /esercizi/trova_ultimo/expected-4.txt: -------------------------------------------------------------------------------- 1 | 11 -------------------------------------------------------------------------------- /esercizi/trova_ultimo/expected-5.txt: -------------------------------------------------------------------------------- 1 | -1 -------------------------------------------------------------------------------- /esercizi/trova_ultimo/input-5.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/u_inscatolate/args-1.txt: -------------------------------------------------------------------------------- 1 | 4 2 2 | -------------------------------------------------------------------------------- /esercizi/u_inscatolate/args-2.txt: -------------------------------------------------------------------------------- 1 | 2 1 2 | -------------------------------------------------------------------------------- /esercizi/u_inscatolate/args-3.txt: -------------------------------------------------------------------------------- 1 | 5 2 2 | -------------------------------------------------------------------------------- /esercizi/u_inscatolate/args-4.txt: -------------------------------------------------------------------------------- 1 | 5 3 2 | -------------------------------------------------------------------------------- /esercizi/u_inscatolate/args-5.txt: -------------------------------------------------------------------------------- 1 | 6 3 2 | -------------------------------------------------------------------------------- /esercizi/ultima_ripetizione/args-3.txt: -------------------------------------------------------------------------------- 1 | a a 2 | -------------------------------------------------------------------------------- /esercizi/ultima_ripetizione/expected-3.txt: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /esercizi/ultima_ripetizione/expected-4.txt: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /esercizi/ultima_ripetizione/expected-5.txt: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /esercizi/ultimo_caporale/expected-1.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /esercizi/ultimo_caporale/expected-2.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/ultimo_caporale/expected-4.txt: -------------------------------------------------------------------------------- 1 | 192 2 | -------------------------------------------------------------------------------- /esercizi/ultimo_caporale/expected-5.txt: -------------------------------------------------------------------------------- 1 | 203 2 | -------------------------------------------------------------------------------- /esercizi/ultimo_caporale/input-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 3 4 2 | -------------------------------------------------------------------------------- /esercizi/ultimo_positivo/expected-1.txt: -------------------------------------------------------------------------------- 1 | 272 2 | -------------------------------------------------------------------------------- /esercizi/ultimo_positivo/expected-10.txt: -------------------------------------------------------------------------------- 1 | 221 2 | -------------------------------------------------------------------------------- /esercizi/ultimo_positivo/expected-2.txt: -------------------------------------------------------------------------------- 1 | 178 2 | -------------------------------------------------------------------------------- /esercizi/ultimo_positivo/expected-3.txt: -------------------------------------------------------------------------------- 1 | 246 2 | -------------------------------------------------------------------------------- /esercizi/ultimo_positivo/expected-4.txt: -------------------------------------------------------------------------------- 1 | 168 2 | -------------------------------------------------------------------------------- /esercizi/ultimo_positivo/expected-5.txt: -------------------------------------------------------------------------------- 1 | 253 2 | -------------------------------------------------------------------------------- /esercizi/ultimo_positivo/expected-6.txt: -------------------------------------------------------------------------------- 1 | 152 2 | -------------------------------------------------------------------------------- /esercizi/ultimo_uno/expected-1.txt: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /esercizi/ultimo_uno/expected-2.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/ultimo_uno/expected-3.txt: -------------------------------------------------------------------------------- 1 | 756 2 | -------------------------------------------------------------------------------- /esercizi/ultimo_uno/expected-4.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/ultimo_uno/expected-5.txt: -------------------------------------------------------------------------------- 1 | 2772 2 | -------------------------------------------------------------------------------- /esercizi/ultimo_uno/input-2.txt: -------------------------------------------------------------------------------- 1 | 00010. 2 | -------------------------------------------------------------------------------- /esercizi/ultimo_uno/input-4.txt: -------------------------------------------------------------------------------- 1 | 1. 2 | -------------------------------------------------------------------------------- /esercizi/van_eck/args-1.txt: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /esercizi/van_eck/args-2.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /esercizi/van_eck/args-3.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /esercizi/van_eck/args-4.txt: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /esercizi/van_eck/expected-3.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /esercizi/visualizza_hanoi/args-1.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /esercizi/visualizza_hanoi/args-2.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /esercizi/visualizza_hanoi/args-3.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /esercizi/visualizza_hanoi/args-4.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /esercizi/word_wrap/args-1.txt: -------------------------------------------------------------------------------- 1 | 40 2 | -------------------------------------------------------------------------------- /esercizi/word_wrap/args-2.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /esercizi/word_wrap/args-3.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /esercizi/word_wrap/args-4.txt: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /esercizi/word_wrap/args-5.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /esercizi/word_wrap/args-6.txt: -------------------------------------------------------------------------------- 1 | 100 2 | --------------------------------------------------------------------------------