tryalgo icon indicating copy to clipboard operation
tryalgo copied to clipboard

Algorithms and data structures for preparing programming competitions: basic and advanced

Results 12 tryalgo issues
Sort by recently updated
recently updated
newest added

The book link https://jilljenn.github.io/#books returns a 404 error

``` array([[0, 1, 0, 0, 0], [0, 0, 1, 1, 0], [1, 1, 1, 0, 0], [1, 1, 1, 1, 1], [0, 1, 1, 1, 0], [1, 1, 1, 1,...

The consecutive ones instance 0,1,0,0,0,0,0,1,0,0,0 0,0,1,0,0,0,0,0,0,0,1 0,1,1,0,0,0,0,0,0,1,0 0,1,1,0,1,0,0,1,1,1,1 is a yes-instance; the correct order is [0, 3, 5, 6, 4, 8, 7, 1, 9, 2, 10]. ```python from tryalgo import...

Stamen has gone https://github.com/python-visualization/folium/issues/1803 But we may find a workaround

On [the blog](https://tryalgo.org/en/geometry/2016/06/25/union-of-rectangles/) someone found out that implementations may not be as fast as expected; the code should be profiled. (According to Christoph, it was due to the testcases.)

Maybe by avoiding resetting the marking vector (thanks Marc de Falco for pointing the problem, thanks notebook ICPC X for the solution).

- [ ] `random_eulerien_graph` n'assure pas que le graphe généré est connexe, peut-être souhaite-t-on que ce soit fait ; - [ ] Line 133 should be different for directed or...

> DEPRECATION: tryalgo is being installed using the legacy 'setup.py install' method, because it does not have a 'pyproject.toml' and the 'wheel' package is not installed. pip 23.1 will enforce...

Just for fun and to thank cp-algorithms.com great website