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

Codewar Practice API

Objectives

  • Create a simple API
  • Practice problem solving

Requirements

Setup

dotnet new sdg-api -o CodeWarPracticeAPI

Resources

  • Use Insomnia for interacting with your API.

Explorer Mode

  • Create a new sdg-api api project
  • Create a Controller for explosion named 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 according to the kata https://www.codewars.com/kata/digits-explosion and return the result
    • Have your code return the string
  • Create a Controller for mumbling named 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 according to the kata https://www.codewars.com/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.