Warning
This page is located in archive. Go to the latest version of this course pages. Go the latest version of this page.

Homework assignments

Note on the private test data

A part of any programming assignment is generating test cases and testing the produced algorithm. It is a very important skill each programmer has to master, regardless of the programming paradigm. Please, take the result of the automatic evaluation as a hint that you should continue this process. Do not ask for the private test data and do not ask what is wrong with your output in the evaluation system. In the real world, no one will give you even this feedback and if you release a product with serious mistakes, you will suffer losses in money and reputation. A more realistic evaluation of your work would be to run the automated evaluation only once, after the deadline, to score your submissions.

On the other hand, if you spend a long time (at least 4 hours) without any progress and you have created a decent set of your own test cases that pass without any problems. I encourage you to write to your lab teachers to help you design additional test cases or possibly help to identify the mistakes in your code.

For writing your test cases, you can use the unit testing framework provided by Racket. To write unit tests, it suffices to import the rackunit module into your code. Then it is possible to test your functions by the function check-equal? comparing the expected output with the actual output. Consult also your local documentation in DrRacket to get more details on rackunit.

#lang racket
(module+ test
  (require rackunit))
 
(define (only-numbers lst) (filter number? lst))
 
(module+ test
  (check-equal? (only-numbers '(1 a 2 3)) '(1 2) "You made an error!"))

Racket

Homework assignment 1

Submit your solution as a zip archive containing a single file with the name hw1.rkt.

The description of the assignment can be found here.

Homework assignment 2

Submit your solution as a zip archive containing a single file named hw2.rkt.
Using the built-in function eval is not allowed!

The assignment description can be found here.

Haskell

Homework assignment 3

Submit your solution as a zip archive containing a single file named Hw3.hs.

The description of the assignment can be found here.

Homework assignment 4

Submit your solution as a zip archive containing a single file with the name Hw4.hs.

The description of the assignment can be found here. The module Parser.hs can be downloaded here.

courses/fup/homework/start.txt · Last modified: 2023/04/27 17:03 by xhorcik