PythonProgrammingPuzzles icon indicating copy to clipboard operation
PythonProgrammingPuzzles copied to clipboard

A Dataset of Python Challenges for AI Research

Results 30 PythonProgrammingPuzzles issues
Sort by recently updated
recently updated
newest added

Bumps [cryptography](https://github.com/pyca/cryptography) from 41.0.4 to 41.0.6. Changelog Sourced from cryptography's changelog. 41.0.6 - 2023-11-27 * Fixed a null-pointer-dereference and segfault that could occur when loading certificates from a PKCS#7 bundle....

dependencies

Bumps [aiohttp](https://github.com/aio-libs/aiohttp) from 3.8.5 to 3.9.0. Release notes Sourced from aiohttp's releases. 3.9.0 Features Introduced AppKey for static typing support of Application storage. See https://docs.aiohttp.org/en/stable/web_advanced.html#application-s-config (#5864) Added a graceful shutdown...

dependencies

Bumps [pyarrow](https://github.com/apache/arrow) from 1.0.1 to 14.0.1. Commits ba53748 MINOR: [Release] Update versions for 14.0.1 529f376 MINOR: [Release] Update .deb/.rpm changelogs for 14.0.1 b84bbca MINOR: [Release] Update CHANGELOG.md for 14.0.1 f141709...

dependencies

Bumps [werkzeug](https://github.com/pallets/werkzeug) from 2.2.3 to 3.0.1. Release notes Sourced from werkzeug's releases. 3.0.1 This is a security release for the 3.0.x feature branch. Changes: https://werkzeug.palletsprojects.com/en/3.0.x/changes/#version-3-0-1 3.0.0 This is a feature...

dependencies

Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.26.17 to 1.26.18. Release notes Sourced from urllib3's releases. 1.26.18 Made body stripped from HTTP requests changing the request method to GET after HTTP 303 "See Other"...

dependencies

Bumps [gitpython](https://github.com/gitpython-developers/GitPython) from 3.1.35 to 3.1.37. Release notes Sourced from gitpython's releases. 3.1.37 - a proper fix CVE-2023-41040 What's Changed Improve Python version and OS compatibility, fixing deprecations by @​EliahKagan...

dependencies

https://github.com/microsoft/PythonProgrammingPuzzles/blob/b663677c882bc5a3c324b2c61caa21a23cbf39be/solvers/enumerative/tython/rules.py#L1087 neccessary —> Necessary

New-puzzle

these data files are needed to run the tests discussed in the paper

# Set up Python Testing Infrastructure ## Summary This PR establishes a comprehensive testing infrastructure for the P3 (Programming Puzzles and Code Competitions) project using Poetry as the package manager...

```python def sat(x: int): """Find an integer x such that the sum of the digits of x squared equals x.""" return sum(int(d) for d in str(x ** 2)) == x...

New-puzzle