-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
301 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,279 @@ | ||
<!DOCTYPE html> | ||
<html lang="fr"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>LaBEE #71 / P-CELNOR</title> | ||
<meta name="description" content="Quelques indices pour jouer et résoudre au mieux la soixante-et-onzième partie de #LaBEE (Spelling Bee en français)"> | ||
<link rel="stylesheet" href="../../css/solitaire.min.css"> | ||
<style> | ||
.play { text-align: center; } | ||
td, th { padding: 3px 12px; text-align: right; } | ||
table {margin-left: 50px; } | ||
@media (max-width: 24rem) { | ||
.play > img { height: 90%; width: 90%; } | ||
table { margin: 0 auto; } | ||
.blog { padding: 0 3px; } | ||
} | ||
ol { padding-left: 2ch; } | ||
.play span { | ||
background-color: #eee; | ||
border-radius: 40%; | ||
color: black; | ||
display: inline-block; | ||
font-size: 36px !important; | ||
font-weight: 700; | ||
height: 70px; | ||
line-height: 66px; | ||
margin: 5px; | ||
width: 70px; | ||
} | ||
.play span.center { | ||
background-color: #ffb000; | ||
} | ||
</style> | ||
<!--[if lt IE 9]> | ||
<script src="../js/html5shiv.min.js"></script> | ||
<![endif]--> | ||
</head> | ||
|
||
<body class="blog"> | ||
|
||
<div class="container"> | ||
|
||
<div class="row"> | ||
|
||
<h1> | ||
<a href="/" title="Play Solitaire online">Solitaire</a> | ||
/ <a href="/blog/labee/">Archives</a> | ||
/ P-CELNOR | ||
</h1> | ||
|
||
<h2>#LaBEE 71 : 22 décembre 2024</h2> | ||
|
||
<p>Combien de mots pouvez vous trouver avec 7 lettres ?</p> | ||
|
||
<p class="play"> | ||
<span>C</span><span>E</span><br> | ||
<span>R</span><span class="center">P</span><span>L</span><br> | ||
<span>O</span><span>N</span> | ||
</p> | ||
<p class="play"> | ||
<a href="/labee/" title="LaBEE - Spelling Bee en français"> | ||
https://www.solitaire-play.com/labee/ | ||
</a> | ||
</p> | ||
|
||
<ul> | ||
<li>Nombre de mots acceptés : 103</li> | ||
<li>Total des points possibles : 556</li> | ||
<li>Nombre de pangrammes existants : 1</li> | ||
<li>Au moins 1 mot débute par chaque lettre : bingo !</li> | ||
</ul> | ||
|
||
<h2>Les #NiveauxLaBEE</h2> | ||
|
||
<p> | ||
Ils dépendent du nombre de points obtenus. Chaque niveau correspond à | ||
un pourcentage du total des points possibles : | ||
</p> | ||
|
||
<ul> | ||
<li>Pas mal : 11</li> | ||
<li>En progrès : 27</li> | ||
<li>Bien : 44</li> | ||
<li>Fortiche : 83</li> | ||
<li>Joli : 139</li> | ||
<li>Super : 216</li> | ||
<li>Épatant : 272</li> | ||
<li>Génial : 383</li> | ||
</ul> | ||
|
||
<h2>La #GrilleLaBEE</h2> | ||
|
||
<table class="grille"> | ||
<thead> | ||
<tr><th></th><th>4</th><th>5</th><th>6</th><th>7</th><th>8</th><th>9</th><th>Σ</th></tr> | ||
</thead> | ||
<tbody> | ||
<tr><th>C</th><td>1</td><td>4</td><td>3</td><td>2</td><td>3</td><td>1</td><th>14</th></tr> | ||
<tr><th>E</th><td>1</td><td>1</td><td>6</td><td>2</td><td></td><td>1</td><th>11</th></tr> | ||
<tr><th>L</th><td></td><td>1</td><td></td><td></td><td></td><td></td><th>1</th></tr> | ||
<tr><th>N</th><td>1</td><td>1</td><td></td><td></td><td>1</td><td>1</td><th>4</th></tr> | ||
<tr><th>O</th><td>1</td><td>1</td><td>3</td><td></td><td></td><td></td><th>5</th></tr> | ||
<tr><th>P</th><td>15</td><td>16</td><td>19</td><td>5</td><td>6</td><td>2</td><th>63</th></tr> | ||
<tr><th>R</th><td></td><td></td><td>1</td><td>2</td><td>2</td><td></td><th>5</th></tr> | ||
</tbody> | ||
<tfoot> | ||
<tr><th>Σ</th><th>19</th><th>24</th><th>32</th><th>11</th><th>12</th><th>5</th><th>103</th></tr> | ||
</tfoot> | ||
</table> | ||
|
||
<p>Quelques explications :</p> | ||
|
||
<ul> | ||
<li>19 mots commencent par P et font 6 lettres</li> | ||
<li>15 mots commencent par P et font 4 lettres</li> | ||
<li>1 mot commence par E et fait 5 lettres</li> | ||
<li>Aucun mot commence par O et fait 7 lettres</li> | ||
</ul> | ||
|
||
<h2>Les #2InitialesLaBEE</h2> | ||
|
||
|
||
<h2>Les #IndicesLaBEE</h2> | ||
|
||
<ol> | ||
<li>Accompagne une cigarette</li> | ||
<li>Aller à l'abordage</li> | ||
<li>Apocope au foot</li> | ||
<li>Appuyée</li> | ||
<li>Assez vague</li> | ||
<li>Augmenter le volume</li> | ||
<li>Aventures</li> | ||
<li>Bancale</li> | ||
<li>Bien avancé</li> | ||
<li>Boiteux</li> | ||
<li>Bout de terre</li> | ||
<li>C'est tout dire</li> | ||
<li>Cactus à raquette *</li> | ||
<li>Camarade de classe</li> | ||
<li>Casserole</li> | ||
<li>Céladon</li> | ||
<li>Centimes anglais</li> | ||
<li>Chauffage</li> | ||
<li>Comme certains bars</li> | ||
<li>Comme un panier</li> | ||
<li>Consortium</li> | ||
<li>Coup dans l'eau</li> | ||
<li>Cuire au four</li> | ||
<li>Dégoter</li> | ||
<li>Déplumée</li> | ||
<li>Dépôt de bières</li> | ||
<li>Dépouiller</li> | ||
<li>Érotisme cochon</li> | ||
<li>Éruption explosive</li> | ||
<li>Façon de souscrire</li> | ||
<li>Faire effet</li> | ||
<li>Faire l'enfant</li> | ||
<li>Fait peine à voir</li> | ||
<li>Filtrer</li> | ||
<li>Foot en boites</li> | ||
<li>Frotter dur</li> | ||
<li>Fruit des cucurbitacées *</li> | ||
<li>Galeux</li> | ||
<li>Gamelle</li> | ||
<li>Gardian sud-américain</li> | ||
<li>Général au tribunal</li> | ||
<li>Genre de boulot</li> | ||
<li>Gens connus</li> | ||
<li>Girouette marine *</li> | ||
<li>Habit de plongeur</li> | ||
<li>Homélie</li> | ||
<li>Hot Butter</li> | ||
<li>Intarissable</li> | ||
<li>Joliment frisée</li> | ||
<li>Joue avec une clef</li> | ||
<li>Larmoyante</li> | ||
<li>Lessivé</li> | ||
<li>Mal qui ronge</li> | ||
<li>Méthyléthylène</li> | ||
<li>Moustiquaire catho *</li> | ||
<li>Nous fait suer</li> | ||
<li>Oiseau tropical parfois panaché *</li> | ||
<li>Ouverture</li> | ||
<li>Papier froissé</li> | ||
<li>Parler québécois</li> | ||
<li>Passée à la casserole</li> | ||
<li>Péronnelle</li> | ||
<li>Pierre qui flotte</li> | ||
<li>Plante invasive *</li> | ||
<li>Plus forte que la plume</li> | ||
<li>Point reconnaissable</li> | ||
<li>Point spirituel</li> | ||
<li>Pontifier</li> | ||
<li>Poudre à éternuer</li> | ||
<li>Pour retirer du liquide</li> | ||
<li>Prêtre</li> | ||
<li>Producteur de café</li> | ||
<li>Prolapsus du vagin *</li> | ||
<li>Punaise d'eau</li> | ||
<li>Quelquefois épique</li> | ||
<li>Ramasser les feuilles mortes</li> | ||
<li>Recousu</li> | ||
<li>Refaire son trou</li> | ||
<li>Rejets issus d'une souche *</li> | ||
<li>Remettre sur la table</li> | ||
<li>Rendre un jugement</li> | ||
<li>Roi des forêts</li> | ||
<li>Sèche</li> | ||
<li>Seuil</li> | ||
<li>Siège d'enfant</li> | ||
<li>Significatif</li> | ||
<li>Sortie du bloc</li> | ||
<li>Sport équestre</li> | ||
<li>Stimulant</li> | ||
<li>Suzette</li> | ||
<li>Tailler à ras du sol *</li> | ||
<li>Tirer sur une tige</li> | ||
<li>Toujours dans nos jambes</li> | ||
<li>Travaille de nuit</li> | ||
<li>Traverser</li> | ||
<li>Trinquer</li> | ||
<li>Tube alimentaire biseauté</li> | ||
<li>Type de volcan</li> | ||
<li>Un truc rare</li> | ||
<li>Unité mal traduite</li> | ||
<li>Vanter</li> | ||
<li>Vieux papy</li> | ||
<li>Vieux</li> | ||
</ol> | ||
|
||
<p><em> | ||
Les indices suivis d'un astérisque correspondent à des mots assez | ||
compliqués, rarement utilisés, un peu spécifiques ou régionaux et | ||
qu'on ne retrouve pas dans tous les dictionnaires... | ||
</em></p> | ||
|
||
<p> | ||
Michel <span>(2024/12/22)</span> | ||
</p> | ||
|
||
</div> | ||
|
||
<div class="row" id="pub"> | ||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> | ||
<!-- solitaire --> | ||
<ins class="adsbygoogle" | ||
style="display:block" | ||
data-ad-client="ca-pub-5475403929650645" | ||
data-ad-slot="2876021655" | ||
data-ad-format="auto"></ins> | ||
<script> | ||
(adsbygoogle = window.adsbygoogle || []).push({}); | ||
</script> | ||
</div> | ||
|
||
<footer> | ||
<p> | ||
© 2024 | ||
<span> | ||
/ <a href="/" title="Play Klondike Solitaire">Solitaire</a> | ||
/ <a href="/games/" title="Online solitaire games">Games</a> | ||
/ <a href="/about/" title="About Solitaire-Play">About</a> | ||
/ <a href="/blog/" title="Solitaire News">Blog</a> | ||
/ <a href="/lemot/" title="WORDLE en français" hreflang="fr-FR">LeMOT</a> | ||
</span> | ||
<span> | ||
- https://www.solitaire-play.com/ | ||
</span> | ||
</p> | ||
</footer> | ||
|
||
</div> | ||
|
||
</body> | ||
|
||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters