Skip to content

Latest commit

 

History

History
59 lines (32 loc) · 1.27 KB

File metadata and controls

59 lines (32 loc) · 1.27 KB

author: Tony Beaumont summary: Problem Solving: How much Toast? id: problem-01 categories: coding environments: Web status: Published feedback link: mailto:a.j.beaumont@aston.ac.uk

Problem Solving: How much Toast?

Introduction

This series of problem solving exercises are based on problems found on Codewars https://www.codewars.com/ or Hackerank https://www.hackerrank.com/dashboard.

What you should already know

This is the first problem in the course. There is no need for any prior knowledge.

What you'll learn

  • abstraction
  • decomposition

What you'll need

No specific tools are required, although you will need to make notes so either pencil and paper or a text editor on your laptop.

What you'll do

You will be presented with a problem. You will learn how to understand the problem and break the problem down into steps that help you work towards a solution.

Problem Description

Todays problem can be found here: .

After the class finishes, you should submit a solution to the problem using the link above.

Story

Problem

Examples:

Code Template

function someCode() {
  // you code goes below this line
  
}

Understanding the problem