Skip to content

Latest commit

 

History

History
5 lines (5 loc) · 448 Bytes

File metadata and controls

5 lines (5 loc) · 448 Bytes

Substring-Generator

This project implements a function to generate all possible substrings of a given string. The program is generic and works for any input string, returning results in a list. As a bonus, it can remove duplicate substrings. The implementation strictly uses loops, conditions, and string slicing, adhering to code constraints. The project demonstrates string manipulation, algorithmic thinking, and basic programming constructs.