Python/graphs
Christian Clauss 26b0803319
Simplify sudoku.is_completed() using builtin all() (#1608)
* Simplify sudoku.is_completed() using builtin all()

Simplify __sudoku.is_completed()__ using Python builtin function [__all()__](https://docs.python.org/3/library/functions.html#all).

* fixup! Format Python code with psf/black push

* Update sudoku.py

* fixup! Format Python code with psf/black push

* Old style exception -> new style for Python 3

* updating DIRECTORY.md

* Update convex_hull.py

* fixup! Format Python code with psf/black push

* e.args[0] = "msg"

* ValueError: could not convert string to float: 'pi'

* Update convex_hull.py

* fixup! Format Python code with psf/black push
2019-12-08 22:42:17 +01:00
..
a_star.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
articulation_points.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
basic_graphs.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
bellman_ford.py Improve bellman_ford.py (#1575) 2019-11-19 13:52:55 -08:00
bfs_shortest_path.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
bfs.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
breadth_first_search.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
check_bipartite_graph_bfs.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
check_bipartite_graph_dfs.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
depth_first_search.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
dfs.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
dijkstra_2.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
dijkstra_algorithm.py Simplify sudoku.is_completed() using builtin all() (#1608) 2019-12-08 22:42:17 +01:00
dijkstra.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
dinic.py psf/black code formatting (#1421) 2019-10-22 19:13:48 +02:00
directed_and_undirected_(weighted)_graph.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
edmonds_karp_multiple_source_and_sink.py Improved readability (#1615) 2019-12-07 06:39:59 +01:00
eulerian_path_and_circuit_for_undirected_graph.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
even_tree.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
finding_bridges.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
g_topological_sort.py Add Topological Sort (#1302) 2019-10-18 08:13:58 +02:00
graph_list.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
graph_matrix.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
graphs_floyd_warshall.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
kahns_algorithm_long.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
kahns_algorithm_topo.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
minimum_spanning_tree_kruskal.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
minimum_spanning_tree_prims.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
multi_hueristic_astar.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
page_rank.py Improved readability (#1615) 2019-12-07 06:39:59 +01:00
prim.py Improve prim.py (#1226) 2019-12-01 06:13:28 +01:00
scc_kosaraju.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
tarjans_scc.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00