A PHP Error was encountered

Severity: Warning

Message: fopen(/tmp/ci_sessionl02t965eigfa25vfgvsf3e8ofeto2u7q): failed to open stream: No space left on device

Filename: drivers/Session_files_driver.php

Line Number: 176

Backtrace:

File: /var/www/html/application/controllers/Public_pages.php
Line: 8
Function: __construct

File: /var/www/html/index.php
Line: 311
Function: require_once

A PHP Error was encountered

Severity: Warning

Message: session_start(): Failed to read session data: user (path: /tmp)

Filename: Session/Session.php

Line Number: 143

Backtrace:

File: /var/www/html/application/controllers/Public_pages.php
Line: 8
Function: __construct

File: /var/www/html/index.php
Line: 311
Function: require_once

PRIYA KUMARI - Coders Packet
Coders Packet

Packets submitted by PRIYA KUMARI

Prim's Algorithm MST implementation in Python

Given module calculates the minimum spanning tree for a graph using Prim's algorithm. This algorithm is implemented using heapq module.

Sparse Table Range Minimum Query Implementation in Python

Given module finds the minimum element in an array between position i to j. RMQ can be used in problems directly or can be applied to implement other task like the Lowest Common Ancestor problem.

Lowest Common Ancestor in Binary tree - Python

Python program to find Lowest Common Ancestor (LCA) of n1 and n2 using one traversal of Binary tree