This page is a work in progress.You can help improve it. →

Explosion API!

Objectives

  • Create a simple API
  • Practice problem solving

Requirements

Setup

dotnet new sdg-api -o ExplosionAPI

Resources

Explorer Mode

  • Create a controller for ReverseString
    • Create a new Controller called ReverseStringController
    • This will have one HttpGet method
    • The method will accept a string either as a URL parameter or a query parameter. Your choice.
    • This endpoint method will reverse the string passed to it, manipulate it according to the kata Reverse String and return the result
    • Have your code return the string
  • Create a controller for explosion
    • Create a new Controller called ExplosionController
    • This will have one HttpGet method
    • The method will accept a string either as a URL parameter or a query parameter. Your choice.
    • This endpoint method will take the string passed to it, manipulate it according to the kata Digits Explosion and return the result
    • Have your code return the string
  • Create a controller for mumbling
    • Create a new Controller called MumblingController
    • This will have one HttpGet method
    • The method will accept a string either as a URL parameter or a query parameter. Your choice.
    • This endpoint method will take the string passed to it, manipulate it according to the kata Mumbling and return the result
    • Have your code return the string

Adventure Mode

None

Epic Mode

None

© 2017 - 2022; Built with ♥ in St. Petersburg, Florida.