My Coding Quiz #40
My Coding Quiz #40 👨💻🛠️🧩
Welcome to the new installment of my series of Coding Quizzes, in which you will be able to test your knowledge and skills about programming and software development in a simple and fun way. If you want to learn more about it visit my blog here on Hive and the first post where I introduced it.
Without further ado, here's the riddle...
By @eniolw
What's your choice? Can you figure out any feedback to the developers from this?
Solution to the previous quiz: a1,b2,c3,d4. First of all, we define the string files
with the hardcoded value 'abcd'
and the range ranks
that goes from 1 to 5 (6 is not counted, since the limit of the range is exclusive).
Next, we create a sq
object using the built-in zip
function. This function allows you to loop over two or more iterables simultaneously and make a new iterable of tuples with the matching elements of each iterable. We can see how this works in the following table:
Index | 0 | 1 | 2 | 3 |
files | a | b | c | d |
ranks | 1 | 2 | 3 | 4 |
zip | a1 | b2 | c3 | d4 |
Interestingly, it seems that there is no mathematical function that describes this operation, since the Catersian product of sets differs in that it creates all possible pair of elements. According to this page, the diagonal product is a close approximation to the zip
function.
Regardless, this function is very useful in programming and has many applications. In this case, I used it to combine the files
and ranks
to create sq
, which stands for squares. If you pay attention, these are names of squares on a chess board: a1, b2, c3 and d4.
Now, you may have also noticed that ranks
had elements from 1 to 5, so what happened to 5? It was ignored because zip
only pairs or combines iterables that have the same length. The moment the size of an iterable is longer than the others, zip
will stop and the resulting iterable will have the same length as the shortest given iterable.
Finally, the iterable is executed using the well-known join
function, obtaining a convenient string labels
.
If you want to blog about computer science and programming content, I invite you to join Hive and participate in its communities, such as STEM-social, Develop Spanish, Programming & Dev
Mi Quiz de Programación #40 👨💻🛠️🧩
Bienvenido a mi nueva serie de Quizzes de Programación, en la cual podrás poner a prueba tus conocimientos y habilidades sobre programación y desarrollo de software de una manera sencilla y divertida. Si quieres aprender más sobre ella visita mi blog aquí en Hive y el primer post donde la presenté.
Sin más preámbulos, he aquí el acertijo...
Por @eniolw
¿Cuál es tu elección? ¿Puedes deducir algún feedback a los desarrolladores a partir de esto?
Solución al quiz anterior: a1,b2,c3,d4. En primer lugar, definimos la cadena files
con el valor codificado 'abcd'
y el rango ranks
que va del 1 al 5 (6 es no contabilizado, ya que el límite del rango es excluyente).
A continuación, creamos un objeto sq
usando la función zip
incorporada. Esta función le permite recorrer dos o más iterables simultáneamente y crear un nuevo iterable de tuplas con los elementos coincidentes de cada iterable. Podemos ver cómo funciona esto en la siguiente tabla:
Índice | 0 | 1 | 2 | 3 |
files | a | b | c | d |
ranks | 1 | 2 | 3 | 4 |
zip | a1 | b2 | c3 | d4 |
Curiosamente, no parece que exista alguna función matemática que describa esta operación, ya que el producto catersiano de conjuntos se diferencia en que crea todos los pares de elementos posibles. Según esta página , el producto diagonal es una aproximación cercana a la función zip
.
De todos modos, esta función es muy útil en programación y tiene muchas aplicaciones. En este caso, lo usé para combinar los files
y los ranks
para crear sq
, que significa casillas (squares en inglés). Si prestas atención, estos son los nombres de las casillas de un tablero de ajedrez: a1, b2, c3 y d4.
Ahora, también habrás notado que ranks
tenía elementos del 1 al 5, entonces, ¿qué pasó con 5? Se ignoró porque zip
solo empareja o combina iterables que tienen la misma longitud. En el momento en que el tamaño de un iterable sea más largo que los demás, zip
se detendrá y el iterable resultante tendrá la misma longitud que el iterable más corto dado.
Finalmente, el iterable se ejecuta utilizando la conocida función join
, obteniendo una conveniente cadena labels
.
Si quieres bloguear sobre contenido informático y de programación, te invito a unirte a Hive y participar en sus comunidades, tales como STEM-social, Develop Spanish, Programming & Dev y otras.
@tipu curate 8
Upvoted 👌 (Mana: 0/69) Liquid rewards.
Thanks for your contribution to the STEMsocial community. Feel free to join us on discord to get to know the rest of us!
Please consider delegating to the @stemsocial account (85% of the curation rewards are returned).
You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support.