Skip to content

GaabrielCoosta/Changelle_HandTalk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Challenge, Hand Talk 👋

NPM NPM

Project

Challenge Hand Talk, these are questions prepared by the data science team at Hand Talk, aimed at solving computational problems.

Running the project

  • Prerequisites: Python 3+
# clone repository
git clone /~https://github.com/GaabrielCoosta/Changelle_HandTalk

# enter the folder corresponding to the desired challenge
cd Combinations
cd Identificandoidiomas

# run the ".py" file
Identificadordeidiomas.py
Combinations.py

Challenge: Language Identifier

  • Description:

    Develop a strategy and build a system that is able to answer which language a given sentence belongs to.

Example:

`eu gosto de cafĂ©` → `por`

`I like coffee`→ `eng`

Requirements

  • Support at least 3 languages ​​(English, Portuguese and German, for example)
  • Use Python 3+ (and COFFEE ☕) to solve the problem
  • Use git and github to version your code. Try to send (commits) all stages of evolution of your implementation.
  • Create a readme.md to explain how to use your project.

Support Documentation

Challenge: Combinations

  • Description:

    Given any sentence, generate all possible combinations of breaking that sentence, fragmenting it until it can no longer be broken.

Example:

  • Input: eu gosto de cafĂ©

  • Output:

[
['eu gosto de café'],
['eu', 'gosto de café'],
['eu gosto', 'de café'],
['eu gosto de', 'café'],
['eu', 'gosto', 'de café'],
['eu', 'gosto de', 'café'],
['eu gosto', 'de', 'café'],
['eu', 'gosto', 'de', 'café']
]

Requirements

  • Use Python 3+ (and COFFEE ☕) to solve the problem
  • Use git and github to version your code. Try to send (commits) all stages of evolution of your implementation.
  • Create a readme.md to explain how to use your project.

Support Documentation

Gabriel Costa Andrade

https://www.linkedin.com/in/gabriel-andrade-590a17227/

About

💡 Challenges, created by the data science team.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages