You have already solved the explosion and mumbling katas. The client loves your solution so much that they want you to turn it into an API us on the web.
For this assignment, create a simple API with two endpoints, one for the explosion and one for the mumbling.
Objectives
Create a simple API
Practice problem solving
Requirements
Install the sdg-api template using the command dotnet new -i SDG.templates.Web.API
Create 2 endpoints, /api/mumbling and api/explosion, that are based off of the katas,[https://www.codewars.com/kata/mumbling](https://www.codewars.com/kata/mumbling) and [https://www.codewars.com/kata/digits-explosion](https://www.codewars.com/kata/digits-explosion) respectfully.
Explorer Mode
[x] Create a new sdg-web api project
[x] Create a endpoint for the mumbling endpoint
[x] Create a new Controller called MumblingController
Explosion Api
You have already solved the
explosion
andmumbling
katas. The client loves your solution so much that they want you to turn it into an API us on the web.For this assignment, create a simple API with two endpoints, one for the
explosion
and one for themumbling
.Objectives
Requirements
sdg-api
template using the commanddotnet new -i SDG.templates.Web.API
/api/mumbling
andapi/explosion
, that are based off of the katas,[https://www.codewars.com/kata/mumbling](https://www.codewars.com/kata/mumbling)
and[https://www.codewars.com/kata/digits-explosion](https://www.codewars.com/kata/digits-explosion)
respectfully.Explorer Mode
sdg-web
api projectmumbling
endpointMumblingController
HttpGet
ActionResult
explosion
endpointExplosionController
HttpGet
ActionResult
Adventure Mode