Parse and evaluate simple math word problems returning the answer as an integer.
Problems with no operations simply evaluate to the number given.
What is 5?
| Scenario: | |
| - We will have 1000 devices capturing the user's heart rate, with 1 check per second; | |
| - each device captures geolocation (latitude, longitude), user (name and age), device, date, heart rate; | |
| - Doctors are only interested in all data of the last day (current day is not important in this scenario) | |
| - Doctors need analytics dashboards with data by age and by user (from the last day - not considering today) |
| ## Instructions | |
| The goal of this exercise is to create a project that tests the given web application using *Katalan*. | |
| ### The Task | |
| https://dev-usdm-digital-exp-web.codelitt.dev | |
| ### Features and Requirements |
| import React, { useState } from 'react'; | |
| import classNames from 'classnames'; | |
| import styles from './Tab.module.scss'; | |
| import { Button } from 'agnosticDesignSystem'; | |
| type MenuItem = { | |
| title: string | React.ReactNode; | |
| active?: boolean; | |
| key: string; | |
| }; |
The goal of this exercise is to create a backend using C# using the REST arquitecture.
In this task, we are building backend of an application that helps us managing our team.
| { | |
| "offset": 2, | |
| "page_size": 20, | |
| "total_pages": 3, | |
| "data": [ | |
| { | |
| "id": 1, | |
| "date": "10/21/2021", | |
| "product": { | |
| "name": "Box", |
The goal of this exercise is to create a demo calendar application using React. We strongly recommend create-react-app to make the bootstrapping of your application really easy.
Please don't use a calendar library, we would like to see your own calendar logic.
You should start by rendering a single month view of a calendar for the current month – along with the lines of the calendar image in this project.
| { | |
| "subscriptionId": "a910b322-fbcf-4550-ac7b-c311ad8ddc32", | |
| "notificationId": 456, | |
| "id": "e4aaa8a5-6ef8-4950-85a4-0aab2d7048f4", | |
| "eventType": "ms.vss-code.git-pullrequest-comment-event", | |
| "publisherId": "tfs", | |
| "message": { | |
| "text": "Victor Carvalho has commented on a pull request", | |
| "html": "Victor Carvalho has \u003ca href=\"https://dev.azure.com/AY-InnovationCenter/Avant/_git/ay-pia-web/pullrequest/608?discussionId=2939\"\u003ecommented\u003c/a\u003e on a pull request", | |
| "markdown": "Victor Carvalho has [commented](https://dev.azure.com/AY-InnovationCenter/Avant/_git/ay-pia-web/pullrequest/608?discussionId=2939) on a pull request" |
| { | |
| "subscriptionId": "00000000-0000-0000-0000-000000000000", | |
| "notificationId": 32, | |
| "id": "fb2617ed-60df-4518-81fa-749faa6c5cd6", | |
| "eventType": "workitem.commented", | |
| "publisherId": "tfs", | |
| "message": { | |
| "text": "Bug #5 (Some great new idea!) commented on by Jamal Hartnett.\r\n(http://fabrikam-fiber-inc.visualstudio.com/web/wi.aspx?pcguid=74e918bf-3376-436d-bd20-8e8c1287f465\u0026id=5)", | |
| "html": "\u003ca href=\"http://fabrikam-fiber-inc.visualstudio.com/web/wi.aspx?pcguid=74e918bf-3376-436d-bd20-8e8c1287f465\u0026amp;id=5\"\u003eBug #5\u003c/a\u003e (Some great new idea!) commented on by Jamal Hartnett.", | |
| "markdown": "[Bug #5](http://fabrikam-fiber-inc.visualstudio.com/web/wi.aspx?pcguid=74e918bf-3376-436d-bd20-8e8c1287f465\u0026id=5) (Some great new idea!) commented on by Jamal Hartnett." |
| FROM ruby:3.0.1-buster | |
| ARG ENVIRONMENT | |
| ARG SECRET_KEY_BASE | |
| RUN echo "Running Dockerfile with the environment: ${ENVIRONMENT}" | |
| WORKDIR /app | |
| ADD Gemfile /app/Gemfile | |
| ADD Gemfile.lock /app/Gemfile.lock | |
| RUN bundle config set with ${ENVIRONMENT} |