Skip to content

MichaelSheinman/OperationsGuesser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Operation Guesser

The operation guesser is a project inspired by the PyJac competition. The project receives a sequence of numbers, a target value, and returns a string representing the arithmetic operations required to form the target.

Examples

>>> solve((1, 2, 3, 4), 10)
1 + 2 + 3 + 4
>>> solve((10, 20, 5), 6)
(20 + 10) / 5

You may run consoleSolver.py to experiment with the program's output in different scenrios.

User Interface

main page

Dependencies

The project require python 3, as well as pygame. You can pip install pygame.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages