Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/anirudhbagri/water-jug-problem

Classical Water jug problem solved using BFS.
https://github.com/anirudhbagri/water-jug-problem

bfs hacktoberfest water-jug-problem

Last synced: 26 days ago
JSON representation

Classical Water jug problem solved using BFS.

Awesome Lists containing this project

README

        

# Water-Jug-Problem
Classical Water jug problem solved using BFS.
Input : Capacity of water jugs and the required configuration.
Output : Steps to reach the final configuration.
Example :
Input
4 3
2 3
Output :
(0,0)(4,0)(1,3)(1,0)(0,1)(4,1)(2,3)