Skip to content

DanielNeale/comp110-worksheet-3

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

COMP110 Worksheet 3: Flowcharts and pseudocode

This is the base repository for COMP110 Worksheet 3.

Fork this repository, and edit README.md to show your pseudocode solving the worksheet task. Tip: use triple backticks to preserve spacing, e.g.:


guesses = 4
running = true

WHILE running
  
  IF guesses > 0

    list = remaining words
    word = first word in list
  
    IF word is correct
      WIN
  
    ELSE
      likeness = number of correct characters
      FOR each word in list
        IF likeness of word in list != likeness of word
          REMOVE current word from list
      REMOVE word from list
      guesses - 1

  ELSE
    LOSE
    running = false

flowchart

About

Base repository for COMP110 worksheet 3 (flowcharts and pseudocode)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published