-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: ✨ Add exercise beginner of IA with matrix. (#348)
- Loading branch information
1 parent
3a29015
commit fc05517
Showing
2 changed files
with
77 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
difficulty: | ||
- beginner | ||
OAs: | ||
- arrays | ||
projects: | ||
- cipher | ||
- card validation | ||
--- | ||
|
||
# Transpose matrix | ||
|
||
[https://edabit.com/challenge/zQm9YZTTFPhNtYjDr](https://edabit.com/challenge/zQm9YZTTFPhNtYjDr) | ||
|
||
En matemáticas, la matriz traspuesta es aquella que surge como resultado de | ||
realizar un cambio de columnas por filas y filas por columnas en la matriz original, | ||
generándose una nueva matriz (a la que llamamos traspuesta) | ||
|
||
Crear un solo prompt con ayuda de una herramienta de inteligencia artificial que | ||
te permita replicar por completo la siguiente interfaz: [https://stingy-brass-organ.glitch.me](https://stingy-brass-organ.glitch.me) | ||
|
||
![Example transpose](https://i.ytimg.com/vi/-Dlehwt7BZs/maxresdefault.jpg) | ||
|
||
__Referencia__ | ||
|
||
```txt | ||
Tener en la posición (0,0): | ||
Valor en la posición (0,1): | ||
Valor en la posición (1,0): | ||
Valor en la posición (1,1): | ||
``` | ||
|
||
> __Importante__ ❗ | ||
> | ||
> Puedes pedirle a la herramienta que tome un rol para que el prompt sea más especifico. |
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,39 @@ | ||
--- | ||
difficulty: | ||
- beginner | ||
OAs: | ||
- arrays | ||
projects: | ||
- cipher | ||
- card validation | ||
--- | ||
|
||
# Transpose matrix | ||
|
||
[https://edabit.com/challenge/zQm9YZTTFPhNtYjDr](https://edabit.com/challenge/zQm9YZTTFPhNtYjDr) | ||
|
||
Em matemática, a matriz transposta é aquela que surge como resultado de | ||
executar uma troca de coluna para linha e linha para coluna na matriz original, | ||
gerando uma nova matriz (que chamamos de transposição) | ||
|
||
Crie um único prompt com a ajuda de uma ferramenta de inteligência artificial que | ||
permite replicar totalmente a seguinte interface: [https://stingy-brass-organ.glitch.me](https://stingy-brass-organ.glitch.me) | ||
|
||
![Example transpose](https://i.ytimg.com/vi/-Dlehwt7BZs/maxresdefault.jpg) | ||
|
||
__Referência__ | ||
|
||
```txt | ||
Ter em posição (0,0): | ||
Ter em posição (0,1): | ||
Ter em posição (1,0): | ||
Ter em posição (1,1): | ||
``` | ||
|
||
> __Importante__ ❗ | ||
> | ||
> Você pode solicitar que a ferramenta assuma uma função para tornar o prompt | ||
>mais específico. |