Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 757 Bytes

README.md

File metadata and controls

32 lines (21 loc) · 757 Bytes

String Manipulation API

Palindrome

Overview

This API provides functionalities to reverse a string and check if a string is a palindrome.

Prerequisites

.NET 6 SDK - The project requires the .NET 6 SDK or Higher. Ensure it is installed and configured on your machine.

Setup

Git clone the repository

git clone https://github.com/MoteneJan/StringManipulationAPI.git cd StringManipulationAPI

Endpoints

GET /api/v1/StringManipulation

Parameters:

  • input (query string parameter): The input string to be processed.
  • e.g,. input - "racecar"

Response:

{
  "ReversedString": "your reversed string",
  "IsPalindrome": true/false
}