A PHP Error was encountered

Severity: Warning

Message: fopen(/tmp/ci_sessionu50al1tqstgdfvfcrvtnm7nh4mg7v3ad): 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

RANJITH RAMAMURTHY TEVNAN - Coders Packet
Coders Packet

Packets submitted by RANJITH RAMAMURTHY TEVNAN

Dynamic Range Sum Queries in C++

Given an array of n integers, and given q queries, 1. update the value at position k to u 2. what is the sum of values in the range [a,b]?

Convert a string of Uppercase Letters to a Palindromic string in C++

This code takes a string with all Uppercase Letters and tells if its reordering can give a palindromic string(And tell if it is impossible). This code is written in C++.

Book Cricket game implemented in C++

This is a project implementing the Book Cricket game in C++. Book Cricket involves using the random page number of the book to calculate runs scored.

C++ implementation of Pattern searching in a string in an efficient way

This is a C++ code which helps in detecting a pattern in a given string in a very efficient way. It takes two strings as input. First input is the pattern and the next one is the string(Text).