We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 792705a + 30aa513 commit 3f16c4bCopy full SHA for 3f16c4b
components/SummaryTable.tsx
@@ -53,7 +53,7 @@ export function SummaryTable({
53
});
54
55
// If the algorithm is FCFS, calculate waiting and turnaround times after sorting by arrival time
56
-if (algorithm === "fCFS") {
+if (algorithm === "FCFS") {
57
// Sort processes by arrival time for FCFS order, ignoring idle processes
58
const sortedProcesses = [...calculatedProcesses].sort(
59
(a, b) => a.arrival_time - b.arrival_time
0 commit comments