Browse Source

foundation

master
hofmannol 6 months ago
parent
commit
fe69f32484
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      SoSe24/algodat/foundation.py

+ 4
- 1
SoSe24/algodat/foundation.py View File

@@ -250,7 +250,9 @@ class AlgoDatArray:

def __init__(self, size):
self.size = size
self.array = [AlgoDatValue(None)] * size
self.array = []
for i in range(size):
self.array.append(AlgoDatValue(None))

def set(self, index, value):
assert isinstance(value, AlgoDatValue)
@@ -323,6 +325,7 @@ def read_int_sequence(filename: str) -> AlgoDatArray:
with open(filename, "r") as file:
l = list(map(int, file.read().split()))
a = AlgoDatArray(len(l))
AlgoDatValue.memory -= len(l)
for i in range(len(l)):
a.set(i, AlgoDatValue(l[i]))
return a

Loading…
Cancel
Save