numpyUtilsUpdated 0.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- numpyUtilsUpdated/__init__.py +5 -0
- numpyUtilsUpdated/ai/AlphaBetaPr.py +42 -0
- numpyUtilsUpdated/ai/BFS_8pz.py +46 -0
- numpyUtilsUpdated/ai/DFS_8pz.py +50 -0
- numpyUtilsUpdated/ai/DLimitS_8pz.py +48 -0
- numpyUtilsUpdated/ai/GBFS.py +33 -0
- numpyUtilsUpdated/ai/GraphColor.py +42 -0
- numpyUtilsUpdated/ai/Minimax.py +71 -0
- numpyUtilsUpdated/ai/Prologs.py +53 -0
- numpyUtilsUpdated/ai/UCS.py +38 -0
- numpyUtilsUpdated/ai/VaccumCleaner.py +59 -0
- numpyUtilsUpdated/ai/Wumpus.py +89 -0
- numpyUtilsUpdated/ai/__init__.py +19 -0
- numpyUtilsUpdated/ai/ticTacToe.py +101 -0
- numpyUtilsUpdated/ai/waterJug.py +59 -0
- numpyUtilsUpdated/cs/__init__.py +17 -0
- numpyUtilsUpdated/cs/ass1.py +102 -0
- numpyUtilsUpdated/cs/ass2.py +71 -0
- numpyUtilsUpdated/cs/ass3.py +137 -0
- numpyUtilsUpdated/cs/ass4.py +103 -0
- numpyUtilsUpdated/daa/APSP_floyd_warshall.py +64 -0
- numpyUtilsUpdated/daa/BinarySearch.py +24 -0
- numpyUtilsUpdated/daa/Dijkstras.py +87 -0
- numpyUtilsUpdated/daa/Greedy_01knapsack.py +62 -0
- numpyUtilsUpdated/daa/Greedy_FKanpsack.py +71 -0
- numpyUtilsUpdated/daa/Job_Seq.py +71 -0
- numpyUtilsUpdated/daa/KnapDP.py +32 -0
- numpyUtilsUpdated/daa/Kruskals.py +108 -0
- numpyUtilsUpdated/daa/Matrix.py +116 -0
- numpyUtilsUpdated/daa/Prims.py +92 -0
- numpyUtilsUpdated/daa/Quick_Sort.py +62 -0
- numpyUtilsUpdated/daa/SSSP_bellman_ford.py +81 -0
- numpyUtilsUpdated/daa/String_editing_problem.py +75 -0
- numpyUtilsUpdated/daa/TSP.py +31 -0
- numpyUtilsUpdated/daa/__init__.py +36 -0
- numpyUtilsUpdated/daa/getInfo.py +0 -0
- numpyUtilsUpdated/daa/min_max.py +41 -0
- numpyutilsupdated-0.0.1.dist-info/METADATA +103 -0
- numpyutilsupdated-0.0.1.dist-info/RECORD +41 -0
- numpyutilsupdated-0.0.1.dist-info/WHEEL +4 -0
- numpyutilsupdated-0.0.1.dist-info/licenses/LICENSE +674 -0
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
def bellman_ford(matrix, source):
|
|
2
|
+
vertices = len(matrix)
|
|
3
|
+
edges = [(i, j, matrix[i][j]) for i in range(vertices) for j in range(vertices) if matrix[i][j] != x and i != j]
|
|
4
|
+
dist = [x] * vertices
|
|
5
|
+
dist[source] = 0
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
for _ in range(vertices - 1):
|
|
9
|
+
for u, v, w in edges:
|
|
10
|
+
if dist[u] + w < dist[v]:
|
|
11
|
+
dist[v] = dist[u] + w
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
if any(dist[u] + w < dist[v] for u, v, w in edges):
|
|
15
|
+
print("Graph contains a negative weight cycle!")
|
|
16
|
+
return None
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
return dist
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
x = float('inf')
|
|
23
|
+
matrix = [
|
|
24
|
+
[0, -1, 4, x, x],
|
|
25
|
+
[x, 0, 3, 2, 2],
|
|
26
|
+
[x, x, 0, x, x],
|
|
27
|
+
[x, 1, 5, 0, x],
|
|
28
|
+
[x, x, x, -3, 0]
|
|
29
|
+
]
|
|
30
|
+
source = 0
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
distances = bellman_ford(matrix, source)
|
|
34
|
+
if distances:
|
|
35
|
+
print("Shortest distances from source:", distances)
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
code = '''
|
|
39
|
+
def bellman_ford(matrix, source):
|
|
40
|
+
vertices = len(matrix)
|
|
41
|
+
edges = [(i, j, matrix[i][j]) for i in range(vertices) for j in range(vertices) if matrix[i][j] != x and i != j]
|
|
42
|
+
dist = [x] * vertices
|
|
43
|
+
dist[source] = 0
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
for _ in range(vertices - 1):
|
|
47
|
+
for u, v, w in edges:
|
|
48
|
+
if dist[u] + w < dist[v]:
|
|
49
|
+
dist[v] = dist[u] + w
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
if any(dist[u] + w < dist[v] for u, v, w in edges):
|
|
53
|
+
print("Graph contains a negative weight cycle!")
|
|
54
|
+
return None
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
return dist
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
x = float('inf')
|
|
61
|
+
matrix = [
|
|
62
|
+
[0, -1, 4, x, x],
|
|
63
|
+
[x, 0, 3, 2, 2],
|
|
64
|
+
[x, x, 0, x, x],
|
|
65
|
+
[x, 1, 5, 0, x],
|
|
66
|
+
[x, x, x, -3, 0]
|
|
67
|
+
]
|
|
68
|
+
source = 0
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
distances = bellman_ford(matrix, source)
|
|
72
|
+
if distances:
|
|
73
|
+
print("Shortest distances from source:", distances)
|
|
74
|
+
|
|
75
|
+
'''
|
|
76
|
+
|
|
77
|
+
def getCode():
|
|
78
|
+
global code
|
|
79
|
+
print(code)
|
|
80
|
+
|
|
81
|
+
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
def min_edit_distance(s1, s2, ic, dc, cc):
|
|
2
|
+
n1, n2 = len(s1), len(s2)
|
|
3
|
+
dp = [[0] * (n2 + 1) for _ in range(n1 + 1)]
|
|
4
|
+
|
|
5
|
+
for i in range(n1 + 1):
|
|
6
|
+
dp[i][0] = i * dc
|
|
7
|
+
for j in range(n2 + 1):
|
|
8
|
+
dp[0][j] = j * ic
|
|
9
|
+
for i in range(1, n1 + 1):
|
|
10
|
+
for j in range(1, n2 + 1):
|
|
11
|
+
cost = 0 if s1[i - 1] == s2[j - 1] else cc
|
|
12
|
+
dp[i][j] = min(
|
|
13
|
+
dp[i - 1][j] + dc,
|
|
14
|
+
dp[i][j - 1] + ic,
|
|
15
|
+
dp[i - 1][j - 1] + cost
|
|
16
|
+
)
|
|
17
|
+
print("The Cost Matrix is:")
|
|
18
|
+
for row in dp:
|
|
19
|
+
print(row)
|
|
20
|
+
|
|
21
|
+
return dp[n1][n2]
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
s1 = input("Enter First String: ")
|
|
25
|
+
s2 = input("Enter Second String: ")
|
|
26
|
+
ic = int(input("Enter Insertion Cost: "))
|
|
27
|
+
dc = int(input("Enter Deletion Cost: "))
|
|
28
|
+
cc = int(input("Enter Substitution Cost: "))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
cost = min_edit_distance(s1, s2, ic, dc, cc)
|
|
32
|
+
print("The Total Cost is:", cost)
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
code = '''
|
|
36
|
+
def min_edit_distance(s1, s2, ic, dc, cc):
|
|
37
|
+
n1, n2 = len(s1), len(s2)
|
|
38
|
+
dp = [[0] * (n2 + 1) for _ in range(n1 + 1)]
|
|
39
|
+
|
|
40
|
+
for i in range(n1 + 1):
|
|
41
|
+
dp[i][0] = i * dc
|
|
42
|
+
for j in range(n2 + 1):
|
|
43
|
+
dp[0][j] = j * ic
|
|
44
|
+
for i in range(1, n1 + 1):
|
|
45
|
+
for j in range(1, n2 + 1):
|
|
46
|
+
cost = 0 if s1[i - 1] == s2[j - 1] else cc
|
|
47
|
+
dp[i][j] = min(
|
|
48
|
+
dp[i - 1][j] + dc,
|
|
49
|
+
dp[i][j - 1] + ic,
|
|
50
|
+
dp[i - 1][j - 1] + cost
|
|
51
|
+
)
|
|
52
|
+
print("The Cost Matrix is:")
|
|
53
|
+
for row in dp:
|
|
54
|
+
print(row)
|
|
55
|
+
|
|
56
|
+
return dp[n1][n2]
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
s1 = input("Enter First String: ")
|
|
60
|
+
s2 = input("Enter Second String: ")
|
|
61
|
+
ic = int(input("Enter Insertion Cost: "))
|
|
62
|
+
dc = int(input("Enter Deletion Cost: "))
|
|
63
|
+
cc = int(input("Enter Substitution Cost: "))
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
cost = min_edit_distance(s1, s2, ic, dc, cc)
|
|
67
|
+
print("The Total Cost is:", cost)
|
|
68
|
+
|
|
69
|
+
'''
|
|
70
|
+
|
|
71
|
+
def getCode():
|
|
72
|
+
global code
|
|
73
|
+
print(code)
|
|
74
|
+
|
|
75
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import sys
|
|
2
|
+
|
|
3
|
+
# MAX = 10
|
|
4
|
+
|
|
5
|
+
def tsp(n, dist, visited, current):
|
|
6
|
+
if visited == (1 << n) - 1:
|
|
7
|
+
return dist[current][0]
|
|
8
|
+
|
|
9
|
+
min_cost = sys.maxsize
|
|
10
|
+
for i in range(n):
|
|
11
|
+
if (visited & (1 << i)) == 0:
|
|
12
|
+
cost = dist[current][i] + tsp(n, dist, visited | (1 << i), i)
|
|
13
|
+
min_cost = min(min_cost, cost)
|
|
14
|
+
|
|
15
|
+
return min_cost
|
|
16
|
+
|
|
17
|
+
def main():
|
|
18
|
+
n = int(input("Enter number of nodes: "))
|
|
19
|
+
dist = []
|
|
20
|
+
print("Enter the adjacency matrix:")
|
|
21
|
+
for i in range(n):
|
|
22
|
+
row = list(map(int, input().split()))
|
|
23
|
+
dist.append(row)
|
|
24
|
+
|
|
25
|
+
visited = 1 # Starting at city 0
|
|
26
|
+
start_city = 0
|
|
27
|
+
min_cost = tsp(n, dist, visited, start_city)
|
|
28
|
+
print(f"Minimum cost: {min_cost}")
|
|
29
|
+
|
|
30
|
+
if __name__ == "__main__":
|
|
31
|
+
main()
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
info = '''
|
|
2
|
+
|
|
3
|
+
call getCode() method to print that code to Shell and it will also save the file ...
|
|
4
|
+
|
|
5
|
+
1. APSP_floyd_warshall
|
|
6
|
+
2. BinarySearch
|
|
7
|
+
3. Dijkstras
|
|
8
|
+
4. Greedy_01knapsack
|
|
9
|
+
5. Greedy_01knapsack
|
|
10
|
+
6. Job_Seq
|
|
11
|
+
7. Kruskals
|
|
12
|
+
8. Matrix
|
|
13
|
+
9. min_max
|
|
14
|
+
10. Prims
|
|
15
|
+
11. Quick_Sort
|
|
16
|
+
12. SSSP_bellman_ford
|
|
17
|
+
13. String_editing_problem
|
|
18
|
+
14. KnapDP
|
|
19
|
+
15. TSP
|
|
20
|
+
|
|
21
|
+
################ Example #################
|
|
22
|
+
|
|
23
|
+
import numpyUtilsNani.daa
|
|
24
|
+
# import daa
|
|
25
|
+
import numpyUtilsNani.daa.getInfo
|
|
26
|
+
|
|
27
|
+
import numpyUtilsNani.daa. APSP_floyd_warshall as prog1
|
|
28
|
+
import numpyUtilsNani.daa.Greedy_01knapsack as prog2
|
|
29
|
+
import numpyUtilsNani.daa.Greedy_FKanpsack as prog3
|
|
30
|
+
# ....
|
|
31
|
+
Method Usage
|
|
32
|
+
prog1.getCode()
|
|
33
|
+
|
|
34
|
+
'''
|
|
35
|
+
|
|
36
|
+
print(info)
|
|
File without changes
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
def max_min(arr, low, high):
|
|
2
|
+
if low == high:
|
|
3
|
+
return arr[low], arr[high]
|
|
4
|
+
elif low == high - 1:
|
|
5
|
+
if arr[low] > arr[high]:
|
|
6
|
+
return arr[low], arr[high]
|
|
7
|
+
else:
|
|
8
|
+
return arr[high], arr[low]
|
|
9
|
+
else:
|
|
10
|
+
mid = (low + high) // 2
|
|
11
|
+
max1, min1 = max_min(arr, low, mid)
|
|
12
|
+
max2, min2 = max_min(arr, mid + 1, high)
|
|
13
|
+
return max(max1, max2), min(min1, min2)
|
|
14
|
+
|
|
15
|
+
arr = list(map(int,input("Enter List elements: ").split()))
|
|
16
|
+
max_v, min_v = max_min(arr, 0, len(arr) -1)
|
|
17
|
+
print(f"Maximum: {max_v} Minimum: {min_v}")
|
|
18
|
+
|
|
19
|
+
code = '''
|
|
20
|
+
def max_min(arr, low, high):
|
|
21
|
+
if low == high:
|
|
22
|
+
return arr[low], arr[high]
|
|
23
|
+
elif low == high - 1:
|
|
24
|
+
if arr[low] > arr[high]:
|
|
25
|
+
return arr[low], arr[high]
|
|
26
|
+
else:
|
|
27
|
+
return arr[high], arr[low]
|
|
28
|
+
else:
|
|
29
|
+
mid = (low + high) // 2
|
|
30
|
+
max1, min1 = max_min(arr, low, mid)
|
|
31
|
+
max2, min2 = max_min(arr, mid + 1, high)
|
|
32
|
+
return max(max1, max2), min(min1, min2)
|
|
33
|
+
|
|
34
|
+
arr = list(map(int,input("Enter List elements: ").split()))
|
|
35
|
+
max_v, min_v = max_min(arr, 0, len(arr) -1)
|
|
36
|
+
print(f"Maximum: {max_v} Minimum: {min_v}")
|
|
37
|
+
'''
|
|
38
|
+
|
|
39
|
+
def getCode():
|
|
40
|
+
global code
|
|
41
|
+
print(code)
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: numpyUtilsUpdated
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A collection of numpy utilities for data analysis and manipulation.
|
|
5
|
+
Project-URL: Homepage, https://github.com/nani-here/numpyUtilsUpdated
|
|
6
|
+
Project-URL: Issues, https://github.com/nani-here/numpyUtilsUpdated/issues
|
|
7
|
+
Author-email: Nani bolthe! <neku.enduku2005@gmail.com>
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.0
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### π¦ `numpyUtilsUpdated` β *Naa Kodaka, Ee Package Thoppu!*
|
|
18
|
+
|
|
19
|
+
*Arre, idhi* just any package *kaadhu, ra*. This is *THE* `numpyUtilsUpdated`, a *gunta*-sized bomb of AI algorithms, DAA *thummu*, and CS assignments. *Nuvvu* student *ayna, enthusiast ayina*, this is your *galli ka rockstar* for smashing those *bekaar* academic problems. *Choodu, ela kottan ra!*
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## π *Structure, Ra Mowa*
|
|
24
|
+
|
|
25
|
+
```
|
|
26
|
+
numpyUtilsUpdated/
|
|
27
|
+
βββ ai/ # AI algorithms, *picha lite* stuff
|
|
28
|
+
βββ cs/ # CS assignments, *sollu kaadhu*
|
|
29
|
+
βββ daa/ # DAA, *nee brain ni pindestham*
|
|
30
|
+
βββ __init__.py # *Idhi start button, ra*
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## π *Submodules, Ra β Chaduvu, Leda flower chekkestaa!*
|
|
36
|
+
|
|
37
|
+
### πΉ `daa` β *Design & Analysis of Algorithms, Ra Puli!*
|
|
38
|
+
|
|
39
|
+
*Idhi* no *gundu* algorithms, *ra*. Full-on *gaddam* stuff:
|
|
40
|
+
- Graphs: Dijkstraβs, Kruskalβs, Primβs, Floyd-Warshall (*nee brain ni fry chestham*)
|
|
41
|
+
- Knapsack (*greedy anta, DP anta, em peekuthav ra?*)
|
|
42
|
+
- String editing, TSP, Job Sequencing, Quick Sort β *anni kottudu!*
|
|
43
|
+
|
|
44
|
+
### πΉ `ai` β *Artificial Intelligence, Ra Rey!*
|
|
45
|
+
|
|
46
|
+
*Idhi* AI, *ra*, not your *sollu* chatbot. Check this *josh*:
|
|
47
|
+
- Search: BFS, DFS, UCS, GBFS, Minimax, Alpha-Beta (*nee logic ni dimpudham*)
|
|
48
|
+
- Problems: 8-puzzle, Tic-Tac-Toe, Water Jug, Wumpus World (*game over, ra!*)
|
|
49
|
+
- Prolog logic, Graph Coloring β *nee brain ka debba debba ayipothadhi*
|
|
50
|
+
|
|
51
|
+
### πΉ `cs` β *CS Assignments, Ra, Settu!*
|
|
52
|
+
|
|
53
|
+
*Semester assignments*? *Nenu unna, tension endhuku ra?*
|
|
54
|
+
- File manipulation (*files ni jugglu chestham*)
|
|
55
|
+
- Data structures (*stack, queue, ra?*)
|
|
56
|
+
- Sorting, searching β *easy ga close chesey*
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
## π *Installation, Ra β Chinnadhi, Nee Size anta!*
|
|
61
|
+
|
|
62
|
+
*Package ayithe*:
|
|
63
|
+
```bash
|
|
64
|
+
pip install numpyUtilsUpdated
|
|
65
|
+
```
|
|
66
|
+
*Ledha*, just clone or copy this *bad boy* into your folder. *Sarle, start chesey!*
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
## π§ *Usage, Ra β Ela Kottali?*
|
|
71
|
+
|
|
72
|
+
```python
|
|
73
|
+
import numpyUtilsUpdated as nani # *Idhi naa peru, ra!*
|
|
74
|
+
|
|
75
|
+
# DAA *thummu*
|
|
76
|
+
nani.daa.Dijkstras.run_dijkstra(graph, source) # *Path kottu ra!*
|
|
77
|
+
|
|
78
|
+
# AI *josh*
|
|
79
|
+
nani.ai.Minimax.play_game() # *Game lo dimpu ra!*
|
|
80
|
+
|
|
81
|
+
# CS *sollu*
|
|
82
|
+
nani.cs.ass1.function_name() # *Assignment close, ra!*
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
*Module import chesina ventane*, console lo *full list* of scripts *pop-up* avuthadhi. *Navigation*? *Picha easy, ra!*
|
|
86
|
+
|
|
87
|
+
---
|
|
88
|
+
|
|
89
|
+
## β
*Features, Ra β Naa Range Enti?*
|
|
90
|
+
|
|
91
|
+
- *Modular AF*, *nuvvu confuse avvu kaadhu*
|
|
92
|
+
- *Educational clarity* β *nuvvu chadivithe ardham avthadhi, ra!*
|
|
93
|
+
- Covers all *classic* AI, DSA, CS *gunta* problems. *Nenu thopu, ra!*
|
|
94
|
+
|
|
95
|
+
---
|
|
96
|
+
|
|
97
|
+
## π¨βπ» *Author, Ra β Nenu Evaru?*
|
|
98
|
+
|
|
99
|
+
**Nani (Digipodhi!*)**
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
*Idhi* naa *khushi* tho, *learning* tho, and *sharing* tho build chesa. *Full β€οΈ, ra!* *Nuvvu try chey, naa package tho nee brain ni *pindesthaa*! π
|
|
103
|
+
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
numpyUtilsUpdated/__init__.py,sha256=ZbwR7URsx-XxlP9hH5gA1oBG3CmBKuwGJEXCg7BgabU,257
|
|
2
|
+
numpyUtilsUpdated/ai/AlphaBetaPr.py,sha256=M6qLtM-ddVPp_Czu1ZawMUz7qg8jxCtcFPVJxmEoKtE,1365
|
|
3
|
+
numpyUtilsUpdated/ai/BFS_8pz.py,sha256=PyncUgZRVv3KlrtRMqoGvvSI84CIl_e1_19tY8oPc5I,1267
|
|
4
|
+
numpyUtilsUpdated/ai/DFS_8pz.py,sha256=5rENzFj-kRWsM3-DxqQGDnaQhFP24g2CiZ0fECKgbhY,1679
|
|
5
|
+
numpyUtilsUpdated/ai/DLimitS_8pz.py,sha256=oYIeVbHyLV90lUbDnAOe0OOfmG5Lsl-MN-AtFDcSuTM,1371
|
|
6
|
+
numpyUtilsUpdated/ai/GBFS.py,sha256=qDcpa04kDcmk9ochK1E9O8A_4RltOhS4lbSbBVwNHkE,939
|
|
7
|
+
numpyUtilsUpdated/ai/GraphColor.py,sha256=ykUqE9eNcr_fo5n6qrw5swe93qDBaR45oS9PNy05YUY,931
|
|
8
|
+
numpyUtilsUpdated/ai/Minimax.py,sha256=X8mXlUuXJuQnOgcGEkXtURguF_mTqNKt8IKzS7MX0Yo,1836
|
|
9
|
+
numpyUtilsUpdated/ai/Prologs.py,sha256=QNt2JogCcQbRQoOyy_-GOzBWWvANjBSuTcL4Zb7VGn4,801
|
|
10
|
+
numpyUtilsUpdated/ai/UCS.py,sha256=urSC2MJJC6smh6jaJYOpQu16MpTWiqxM19a1mNAb0bM,1323
|
|
11
|
+
numpyUtilsUpdated/ai/VaccumCleaner.py,sha256=QjQ1pnFSnxhmBg1INCetfNFLtqbzbmF2H9PzyteXkSM,1581
|
|
12
|
+
numpyUtilsUpdated/ai/Wumpus.py,sha256=gGXZbdfxIX4nVWr6cmkMV9Wv2ULz2tqieXRW--y7M7c,2371
|
|
13
|
+
numpyUtilsUpdated/ai/__init__.py,sha256=rvjZvJfOFqI6VRt2IWQHm4MKSmrjM-GZWbRcbh9XIuI,283
|
|
14
|
+
numpyUtilsUpdated/ai/ticTacToe.py,sha256=-N6oSi7n0J4aEbuUkGVFJEhCpfRACVS6BVI0ZDtL1dg,2309
|
|
15
|
+
numpyUtilsUpdated/ai/waterJug.py,sha256=60FpuZsVdqSYb7d3Us4mHknSGhQ6m_DBZFngYWKu6Lo,1326
|
|
16
|
+
numpyUtilsUpdated/cs/__init__.py,sha256=LfZyBaz3-8qhhge3ezbVNNO6RN9dz0gWMZq4-znxZ1U,501
|
|
17
|
+
numpyUtilsUpdated/cs/ass1.py,sha256=b6XbkuYqy20wb5LNbZZJJus8r523cv-wxOV2WP__a_k,1928
|
|
18
|
+
numpyUtilsUpdated/cs/ass2.py,sha256=71ysZGrJ5cp8d5f1fGstV5gFGHnbD3Pdb7LmQgM_9ZE,1801
|
|
19
|
+
numpyUtilsUpdated/cs/ass3.py,sha256=FOstUavKpQUKehE9y-EqwmtZQZ-1vz21bEY98ZCZIQ0,3507
|
|
20
|
+
numpyUtilsUpdated/cs/ass4.py,sha256=saKK7mAZEwSnAsd_LhPDYrYMV8yk0H5cAqUzmZkYImk,2797
|
|
21
|
+
numpyUtilsUpdated/daa/APSP_floyd_warshall.py,sha256=TxI5NCfWxIojKLeXxyOUlJCnVkZ-kIutMX_HkEoiB1k,1331
|
|
22
|
+
numpyUtilsUpdated/daa/BinarySearch.py,sha256=IsnRw_KCX3HbXg55oGAsPWf9GpsGyjvtAmJLzAo9t2A,662
|
|
23
|
+
numpyUtilsUpdated/daa/Dijkstras.py,sha256=RqGmGnGJ9tDrSCpv8vI3dkyzdFVre14RCqTtNm1jkfc,1989
|
|
24
|
+
numpyUtilsUpdated/daa/Greedy_01knapsack.py,sha256=S9cAdcl9Knn0v0OKsCd3VThrCKXVVlRveeIr8HJZaz8,1353
|
|
25
|
+
numpyUtilsUpdated/daa/Greedy_FKanpsack.py,sha256=cwgv2frK1ghnn0POHVDWkRYJ0bD-TwwSAQiZSAIJXv4,1527
|
|
26
|
+
numpyUtilsUpdated/daa/Job_Seq.py,sha256=Q1HQREtbXVs1HdQK93asr2ITpdfbLYxJOKpqoZ4ZiAI,1993
|
|
27
|
+
numpyUtilsUpdated/daa/KnapDP.py,sha256=9mfPt0t0vQGlh_OeeHPEUWMIhu249UOdNYySMRTwPC8,1038
|
|
28
|
+
numpyUtilsUpdated/daa/Kruskals.py,sha256=6hGKxDz3yZ9RPHqdiBqqGLzHDV7wOhQmnyaniKy27Gc,2361
|
|
29
|
+
numpyUtilsUpdated/daa/Matrix.py,sha256=mUv0CkyHzSa5E2UOLYQwvYeIZy68TIf_IkEzanUQxJA,3335
|
|
30
|
+
numpyUtilsUpdated/daa/Prims.py,sha256=d1VDJ1bx22hB7dsVrDilosH2k2vYUl3phdUmRknPKzg,2147
|
|
31
|
+
numpyUtilsUpdated/daa/Quick_Sort.py,sha256=ctrUW5aCJUnwnrtXKb_Cn9A5s3c9dvaGNuoAR35Sm7k,1617
|
|
32
|
+
numpyUtilsUpdated/daa/SSSP_bellman_ford.py,sha256=vGVgOUQ2QuPgGgZ3n9QRmX380ELOmON74ctxwUm0Ons,1715
|
|
33
|
+
numpyUtilsUpdated/daa/String_editing_problem.py,sha256=35ndYFJtuNzMNmfIXQV937zS0qa6dbT3fM9HSiuTENE,1945
|
|
34
|
+
numpyUtilsUpdated/daa/TSP.py,sha256=aUcS6FFEt3anrUkcJwyHo6bFf5xUa_vEdPQ9B8D3HZ4,790
|
|
35
|
+
numpyUtilsUpdated/daa/__init__.py,sha256=kXJITsSu_UGUZGuA97rbgWtgo6dJpAlTjanSiJxzdoE,699
|
|
36
|
+
numpyUtilsUpdated/daa/getInfo.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
+
numpyUtilsUpdated/daa/min_max.py,sha256=FKPxT0_THlmvkkuIUUusjEjXSVqJuYlkO3bINqLoZlA,1243
|
|
38
|
+
numpyutilsupdated-0.0.1.dist-info/METADATA,sha256=GYDnjGOOn6zTIQcU3GMUwSP3AbFsBDQ1mG8XQMW0SgE,3361
|
|
39
|
+
numpyutilsupdated-0.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
40
|
+
numpyutilsupdated-0.0.1.dist-info/licenses/LICENSE,sha256=gcuuhKKc5-dwvyvHsXjlC9oM6N5gZ6umYbC8ewW1Yvg,35821
|
|
41
|
+
numpyutilsupdated-0.0.1.dist-info/RECORD,,
|