Skip to content

vanavaraVL/Tellurium

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Documentation

  1. Web application of Farm management
  2. DFS of the matrix

Web application

Create a web application for farm management that consists of one page. It will be used only by one farmer. He/she can list, add, and remove animals in the system. Every animal has only a “Name” property that should be unique. The frontend should be written on Angular. The backend is on ASP.NET Core. Use in-memory storage on the server side. The source code should be production ready.

Project contains the following namespaces and organization modules:

How to run

  1. Under the folder (./src/farmManagement/frontend/FarmManagement.Web) perform npm install
  2. Run WebAPI project

DFS of the matrix (Deep First Search)

Create a Application that accepts a matrix of values 0 and 1. The application should output only one value into the console – number of areas formed of number 1. The matrix is presented as a string value where ‘,’ is used as a separator for columns, ‘;’ is used as a separator for rows. For instance, “1,0,1;0,1,0” string value should be converted to the matrix [[1,0,1], [0,1,0]].

DFS overview

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published