mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-10 08:55:37 +08:00
chore: quote lengths script
This commit is contained in:
parent
7e40b31858
commit
931f56f2b9
3 changed files with 7 additions and 7 deletions
|
@ -101,7 +101,7 @@
|
|||
"text": "public int indexOf(int elem) {\n\tint index = 0;\n\tfor (Node curr = head; curr != null; curr = curr.getTail()) {\n\t\tif (curr.getElem() == elem) {\n\t\t\treturn index;\n\t\t} else {\n\t\t\tindex++;\n\t\t}\n\t}\n\treturn -1;\n}",
|
||||
"source": "Get the Index of an Element in a Linked List",
|
||||
"id": 16,
|
||||
"length": 203
|
||||
"length": 202
|
||||
},
|
||||
{
|
||||
"text": "public void setTail(Node curr, Node next) {\n\tif (curr == null) {\n\t\tnext.setNext(head);\n\t\thead = next;\n\t} else {\n\t\tnext.setNext(curr.getNext());\n\t\tcurr.setNext(next);\n\t}\n\tnumNodes++;\n}",
|
||||
|
|
|
@ -158,10 +158,10 @@
|
|||
"id": 25
|
||||
},
|
||||
{
|
||||
"text":"האמת... האמת היא דבר יפה ונורא, ולפיכך יש לטפל בה במירב הזהירות.",
|
||||
"source":"אלבוס דמבלדור (הארי פוטר ואבן החכמים)",
|
||||
"length":64,
|
||||
"id":26
|
||||
"text": "האמת... האמת היא דבר יפה ונורא, ולפיכך יש לטפל בה במירב הזהירות.",
|
||||
"source": "אלבוס דמבלדור (הארי פוטר ואבן החכמים)",
|
||||
"length": 64,
|
||||
"id": 26
|
||||
},
|
||||
{
|
||||
"text": "לעולם אל תבטחי במשהו שחושב בכוחות עצמו אם את לא יודעת איפה הוא מחזיק את המוח שלו.",
|
||||
|
|
|
@ -334,7 +334,7 @@
|
|||
{
|
||||
"text": "Me pregunto si las estrellas se iluminan con el fin de que, algún día, cada uno pueda encontrar la suya.",
|
||||
"source": "El Principito",
|
||||
"length": 103,
|
||||
"length": 104,
|
||||
"id": 57
|
||||
},
|
||||
{
|
||||
|
@ -676,7 +676,7 @@
|
|||
{
|
||||
"text": "Mi nombre es Yoshikage Kira. Tengo 33 años de edad. Mi casa está en la sección noreste de Morioh, donde están todas las villas, y no estoy casado. Trabajo como empleado para los grandes almacenes Kame Yu y llego a casa todos los días a las 8 p.m. como muy tarde. No fumo, pero bebo de vez en cuando. Me acuesto a las 11 p.m. y me aseguro de dormir ocho horas, pase lo que pase. Después de tomar un vaso de leche tibia y hacer unos veinte minutos de estiramientos antes de acostarme, no suelo tener problemas para dormir hasta la mañana. Al igual que un bebé, me despierto sin fatiga ni estrés por la mañana.",
|
||||
"source": "Yoshikage Kira - Jojo's Bizzare Adventure",
|
||||
"length": 608,
|
||||
"length": 607,
|
||||
"id": 115
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue