-
Notifications
You must be signed in to change notification settings - Fork 159
exercises 28-sequence-of-lines to 34-a-aa-aaa-aaaa #58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
exercises 28-sequence-of-lines to 34-a-aa-aaa-aaaa #58
Conversation
Then, the output should be: | ||
## 📝 Instructions: | ||
|
||
1. Write a function called `remove_duplicate_words()` that accepts a sequence of whitespace separated words as input and prints the words after removing all duplicate words and sorting them alphanumerically. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The function should not print but only return, like in the solution
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
divisible_binary(0100,0011,1010,1001) | ||
``` | ||
|
||
## 📎 Ejemplo de salida: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Incluye una breve explicacion de como transformar numeros binarios a numeros reales
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
@@ -0,0 +1,5 @@ | |||
# `31` Sum eight digit |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cambia el nombre de la funcion, no esta relacionado con lo que se pide hacer
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
## 📎 Ejemplo de entrada: | ||
|
||
```py | ||
letters_and_digits(hello world! 123) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Esto es un error de sintaxis
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
@@ -1,6 +1,9 @@ | |||
# Your code here | |||
def computed_value(param): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pon otra solucion mas parecida a lo que haria un estudiante
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
No description provided.