Skip to content

Commit 04408af

Browse files
committed
typos
1 parent a69178d commit 04408af

39 files changed

+20
-20
lines changed

aleatoire/aleatoire.pdf

0 Bytes
Binary file not shown.

aleatoire/aleatoire.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,8 +345,8 @@
345345
return
346346

347347
# Boutons
348-
bouton_couleur=Button(root,text="Déplacer",width=20,command=action_deplacer)
349-
bouton_couleur.pack(pady=10)
348+
bouton_deplacer=Button(root,text="Déplacer",width=20,command=action_deplacer)
349+
bouton_deplacer.pack(pady=10)
350350

351351
bouton_quitter = Button(root,text="Quitter",width=20,command=root.quit)
352352
bouton_quitter.pack(side=BOTTOM, pady=10)

aleatoire/tkinter_mouvement.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ def action_deplacer():
4444
return
4545

4646
# Boutons
47-
bouton_couleur = Button(root,text="Déplacer", width=20, command=action_deplacer)
48-
bouton_couleur.pack(pady=10)
47+
bouton_deplacer = Button(root,text="Déplacer", width=20, command=action_deplacer)
48+
bouton_deplacer.pack(pady=10)
4949

5050
bouton_quitter = Button(root,text="Quitter", width=20, command=root.quit)
5151
bouton_quitter.pack(side=BOTTOM, pady=10)

binaire/binaire-1.pdf

0 Bytes
Binary file not shown.

binaire/binaire-2.pdf

0 Bytes
Binary file not shown.

bitcoin/bitcoin.pdf

-5 Bytes
Binary file not shown.

bitcoin/bitcoin.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080

8181
\item Au lieu de chercher une solution exacte à notre problème $x^2 = y \pmod{p}$, qui est équivalent à $x^2-y \pmod{p} = 0$. On cherche une solution approchée, c'est-à-dire qui vérifie : $$x^2 - y \pmod{p} \ \le m.$$
8282
Par exemple si $m=5$, alors on peut avoir (modulo $p$) : $x^2 - y = 0$, $x^2 - y = 1$,
83-
$x^2-y = 2$,\ldots, $x^2-y=5$.
83+
$x^2-y = 2$,\ldots{} ou $x^2-y=5$.
8484

8585
Programme une fonction \ci{racine_approchee(y,marge)} qui trouve une solution approchée à notre problème $x^2 = y \pmod{p}$.
8686

chaines/chaines.pdf

0 Bytes
Binary file not shown.

chercher/chercher.pdf

46 Bytes
Binary file not shown.

chercher/chercher.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@
303303

304304
Exemple : pour la transformation \rzero\run{} $\rightarrow$ \run\rzero\rzero, parmi toutes les phrases de longueur $p=4$, le maximum d'itérations possibles est $7$. Un tel exemple de phrase est \rzero\run\run\run, qui va se stabiliser (après 7 itérations donc) en \run\run\run\rzero\rzero\rzero\rzero\rzero\rzero\rzero\rzero.
305305
Ainsi la commande \ci{iteration_maximale(4,"01","100")} renvoie :
306-
\mycenterline{7, '0111', '11100000000'}
306+
\mycenterline{\ci{7, '0111', '11100000000'}}
307307

308308

309309
\emph{Indication.} Pour générer toutes les phrases de longueur $p$ formées de \rzero{} et \run{}, tu peux consulter la fiche \og{}Binaire II\fg{} (activité 3).

0 commit comments

Comments
 (0)