--- title: Homework 3 tags: Homeworks-S23, 2023 --- # Homework 3 **Due:** February 14th, 2023 at 11:59PM ET. ### Setup - Create a file in [Pyret](http://code.pyret.org) called `hw3-code.arr`. You will write your solution in here. You will need to copy and paste the following at the top of the file. ``` provide * provide-types * include shared-gdrive("dcic-2021", "1wyQZj_L0qqV9Ekgr9au6RX2iqt2Ga8Ep") include tables FACULTY-DIR = table: name :: String, department :: String, office :: String, phone :: String row: "Strong", "East Asian Studies", "Kassar 180", "282-280-2481" row: "Pugh", "Econ", "Gerard 21", "581-280-2510" row: "Humphrey", "Physics", "Metcalf 300", "231-121-1129" row: "Coleman", "Physics", "B&H 387", "974-093-5128" row: "Kaufman", "Music", " ", "502-120-5781" row: "Pratt", "Anthro", "CIT 672", "281-6723-5677" row: "Cherry", "CS", "CIT 007", "459-005-2098" row: "Sosa", "History", "", "878-784-5612" row: "Price", "Music", "Kassar 4", "102-503-6002" row: "Hopkins", "English", " ", "742-024-8762" row: "Everett", "Physics", "Metcalf 039", "975-202-3333" row: "Keller", "French", "Watson 91", "871-458-0235" row: "Day", "French", " ", "441-459-8722" row: "Stark", "Anthro", "Maxcy 19", "240-120-7852" row: "Branch", "CS", "Robinson 230", "583-0971-2011" row: "Brandt", "Bio", "Watson 210", "401-412-9065" row: "Moody", "Sociology", "Gerard 721", "206-425-3109" row: "Chung", "APMA", "Metcalf 001", "102-030-4050" end ``` - Do **not** put your name anywhere in the file. ### Resources We recommend briefly browsing relevant pages (particularly the CS0111 Table documentation and Pyret's String documentation) before working on these problems. - [Pyret documentation](https://www.pyret.org/docs/latest/) - [CS0111 Table documentation](https://hackmd.io/@cs111/table) (use this **instead** of the official `Table` documentation) - [Information on lambda expressions for tables](https://hackmd.io/@cs111/lambdas-tables) - [Strings documentation](https://www.pyret.org/docs/latest/strings.html) - [Edstem](https://edstem.org/us/courses/35613) - [Testing, Design, and Style guide](https://cs.brown.edu/courses/csci0111/fall2021/assets/docs/pyret-clarity-design-testing.html) - Style tip: ALL lines (including comments) must be **under 100 characters long** <!-- ### Staff Assistance Your friendly TAs and Professor are here to help with this assignment! You can find our schedule for office hours [here](http://cs.brown.edu/courses/csci0111/spring2022/calendar.html). --> ## The Assignment >"I know it's just our first day, but I already can't wait to graduate and start saving mankind... And womankind. And animalkind." [name=Sky High (2005)] At Superhero University, you are helping your friend navigate through all of the different superhero departments and professors. In order to find the super professors you are looking for, you have to create a way to easily look through the large staff at the university. ## Learning Objectives Our goal this week is to practice several essential skills, including breaking down problems into smaller tasks, using documentation, developing comprehensive collections of tests, and writing functions that takes `Row` as input. We are also going to think about the tables of data that consumer products collect about people. We're building up to writing programs that process tables as part of doing data analysis (on homework 4 and the first project).. ## Part 1: Practice Writing Comprehensive Tests :::info Learning Goal: - To practice developing a comprehensive set of tests for a function that you didn't write ::: Knowing how to check whether a program does what you need it to is a valuable skill, even if you aren't the one writing the program. For example, you might have to determine whether a program written (or sold!) by someone else matches your needs. Running a set of specific tests against the existing program can help with this task. For this problem, imagine that you want to hire a programmer to write a function called `is-phone-num` that checks if a given string is a valid phone number. A valid phone number is of the format `XXX-XXX-XXXX`, where each `X` is a numerical digit. Your job is to write a `check` block for `is-phone-num`. It will look like the following (though you don't need to include our tests): ``` check "Basic tests for is-phone-num": is-phone-num("123-456-7890") is true is-phone-num("1") is false end ``` **You are NOT writing the is-phone-num function itself**. The CS111 staff have already done that. In fact, we've written *several* versions, some that return the answers that you want and some that don't (think of these as proposed solutions from multiple programmers). We are going to grade your `check` block by running it against all of our versions and seeing whether your tests are comprehensive enough to tell the ones that work from the ones that don't. :::spoiler How do tests tell apart working and non-working solutions? Imagine that someone claims to have written a program `double` that doubles a number. You write a test ``` check: double(1) is 2 end ``` This will return true on both of the following functions: ``` fun double(x :: Number) -> x * 2 end # a correct version fun double(x :: Number) -> x + 2 end # an incorrect version ``` Thus, a `check` block with only this one test isn't very good, because it doesn't have enough tests to flag that the second version doesn't work. If instead, you wrote the following tests: ``` check: double(1) is 2 double(3) is 6 end ``` Now the first function passes both tests while the second function fails one of the tests. This is a more comprehensive test suite because has enough cases to catch errors in the functions. Your job on this assignment will be to figure out a set of tests that catch errors in as many of our broken solutions as you can. ::: <br> To run your tests against our many versions, you'll work in a custom version of Pyret. **Task 1:** Click [this link](https://pyret.cs.brown.edu/assignment/1uvbEzdhnOG3rQSALqywbXb92t4fNkRZA) to access the custom Pyret version. It might take some time to load (sometimes even 1-2 minutes), especially the first time. **DO NOT click "Begin Implementation".** :::spoiler Pyret/Examplar not loading? Try removing permissions for Pyret@Brown from your Google account. You can do this by going to Manage your Google Account, searching "apps" in the search bar on top of the page, and removing permissions for Pyret@Brown. Then, revisit the link, log in, and re-allow permissions. If you have any questions, post in Ed or come to hours! ::: <br> :::spoiler Did you accidentally click "begin implementation?" Go to drive.google.com, logged in with the account you use for Pyret. Find the folder that is called "pyret.cs.brown.edu" (***not code.pyret.org***), and delete the file called "is-phone-code.arr". Refresh the examplar page and you should be good to go! ***Do not delete hw3-tests-examples.arr, since that contains your work!!!*** ::: <br> **Task 2:** Fill in the `check` block that you see in the custom Pyret window. Your block should contain multiple tests for `is-phone-num`. As you add tests and hit "Run", the report in the interactions window will show you how many unsatisfactory software products you've ruled out. Pyret is running your tests against seven versions of `is-phone-num`, only one of which is correct (each of the other six is broken in some way). Your goal is to knock out as many of the six broken ones as you can. *Note: You don't have to knock out all of the unsatisfactory products to do well on this. This is our first exercise that focuses on designing good tests. This week, we're trying to build up your experience writing tests. Aim to knock out at least four, and see if you can get all the way to knocking out all six. You will get full credit for catching four.* :::spoiler Hints on how to approach this The key to doing well on this is to think systematically about the conditions of the problem and the possible variations in the strings. It will help to have some examples of correctly formatted phone numbers, but also make sure you have plenty of examples with *incorrectly* formatted phone numbers that should result in `false`. What might an incorrectly formatted phone number be? Think about the assumptions of the format -- for example, the length of the input string, the kind of character that exists at every spot in the string, etc. ::: &NewLine; **Task 3:** In your tests file, include a multi-line comment summarizing your strategy and what you learned about writing tests from doing this exercise. **Task 4:** Download your tests file (you'll upload it with the code file when you are done with the assignment). :::warning If your tests download as a .zip file, unzip it to retrieve the Pyret file. Make sure your file is called `hw3-tests-examples.arr`. This will be submitted along with `hw3-code.arr` to Gradescope. If you also see a downloaded file called `hw3-code-ignore.arr`, disregard that file. ::: ## Part 2: String validation :::info Learning Goals: - To practice writing functions using string functions and boolean operators - To practice using documentation to find useful built-in functions ::: **Task 5:** Write a function `in-CIT` that takes a `String` (an office, such as `"CIT 429"` or `"Metcalf 322"`) and returns a `Boolean` that indicates whether the office is in the CIT, that is, whether it starts with the characters `"CIT "` (not including the quotations, and notice the space after the T). :::spoiler **Hints:** - Many of the tasks in this section are about which characters are in specific positions in a string. Think about that approach to these problems, and look in the documentation for a `String` function that helps with this. - Remember that the first position is a `String` is numbered 0, not 1. ::: &NewLine; ::: warning **Note:** Being able to look in language documentation for useful operations is an important skill, which is why we aren't telling you exactly which `String` operations to use. That said, limit yourself to operations with input and output types that we have used this semester (`Number`, `String`, `Boolean`). Don't use operations that return `List`, as we haven't covered that yet.* ::: spoiler **How to Search for Functions in Documentation** When trying to use documentation, read over the names and types of the available functions: do any sound relevant? For those that do, look at the text description and the examples for more detail. If you aren't sure whether a function will help, try a small example on your own in the interactions window. ::: <br> **Task 6:** Write a function called `in-building` that takes a `String` (an office) and another `String` (a building) and returns a `Boolean` that indicates whether the office is in that building, that is, whether it starts with the building name followed by a space. **Task 7:** Write a function called `get-room-number` that takes in a `String` (an office) and returns a `String` of only the office number. For example, `get-room-number("CIT 429")` should return `"429"` (as a `String`). The room number of an office is the part of the String that follows the first space. If the input string does not have a space, it should `raise("Malformed input: no spaces")`. We've seen an example of `raise` at the end of February 6/beginning of February 8 in lecture. [Here](https://www.pyret.org/docs/latest/_global_.html#%28part._~3cglobal~3e_raise%29) is the Pyret documentation. :::spoiler How do we test if a function raises? You can use `raises` instead of `is`! See the [Pyret documentation](https://www.pyret.org/docs/latest/testing.html#%28part._testing_raises%29) ::: ## Part 3: Directory operations **We will cover the material for part 3 on Friday. You can do part 4 before Friday.** :::info Learning Goals: - To give you practice accessing data from tables - To help you understand the benefit of bundling small pieces of data into one larger piece of data ::: Take a look at the `FACULTY-DIR` table in your Pyret file (you can see it in full by typing `FACULTY-DIR` in the interactions window), which represents a directory of university faculty. Notice it has the columns "name", "department", "office", and "phone". ### Part 3A: Combining helper functions and lambdas :::info Remember that we have an [explainer on using lambda expressions and Tables](https://hackmd.io/@cs111/lambdas-tables) ::: **Task 8:** In a comment in your Pyret file, write a lambda expression that operates on a row `r` and returns the result of calling `in-CIT` for the "office" column of the row. Said otherwise, this lambda expression would evaluate to true if the faculty office corresponding to that row returns true and false otherwise. *Hint: don't overthink this task -- this should be a very short expression!* :::info You are not running or testing this expression, you are just writing it down so that you have a reference to use for later tasks. Your answer should be a single line that looks like `lam(r): [your expression here] end`. ::: **Task 9:** In a comment in your Pyret file, write a lambda expression that operates on a row `r` and returns the result of calling `get-room-number` for the "office" column of the row. ### Part 3B: Table operations with helper functions :::danger *Note: It is **extremely** important that you use the [CS0111 Table documentation](https://hackmd.io/@cs111/table), not the Pyret `Table` documentation. The 111 version includes the documentation for `Rows`, which is necessary for this assignment.* ::: **Task 10:** Write an expression for computing the table of all of the directory entries of faculty in `FACULTY-DIR` who have offices in the CIT. The result of this expression should be stored with the name `rows-in-CIT` (e.g. you should have something of the form `rows-in-CIT = [some expression to compute the table]` in your code). Make use of the lambda expression you wrote down in Part 3A, Task 1. **Task 11:** Some faculty in the directory do not have offices listed. In those cases, the "office" cell of that row is a String of 0 or more spaces (e.g. "" or " "). Write an expression for computing a table of all of the directory entries in `FACULTY-DIR` who do not have an office listed. Your expression should make use of a helper function (ours takes in a String and returns a String, but you might have a different approach). Remember to write tests for this helper function. The resulting table should be stored with the name `no-office-fac`. :::spoiler **Hint**: The helper function should be used to help determine if a String is only made up of spaces. There are at least two ways to do this using functions in the Pyret String documentation -- by transforming the original String, or by generating a new String to compare against. ::: <br> **Task 12:** Write a computation to determine the name of the faculty member who has the largest listed office number on campus (as determined alphabetically, e.g. using String sorting). You might have to use multiple lines to compute intermediate data, but the name should be stored with the name `largest-office-fac.` Your computation should make use of the lambda expression you wrote in Task 9. :::spoiler **Hint**: Faculty who don't have an office listed by definition cannot have the largest office number. How can you make sure that the error `raise`d by `get-room-number` does not cause an error in this computation? ::: What office number does that faculty member have? Examine `FACULTY-DIR` by looking through it manually -- does the result surprise you? Are there larger office numbers in the table? **Task 13:** In a comment right below the expression for Task 12, write 1-2 sentences on why the office number for the faculty member that you determined in Task 12 may not be the *numerically* largest office number in the directory. Your answer should demonstrate knowledge of data types. **Task 14:** Write a computation to determine whether all Physics faculty (faculty with the department "Physics") are on the 3rd floor. An office on the third floor has a number with three digits, where the first digit is 3 (for example, "CIT 368" is on the third floor, while "Metcalf 30" is not). Assume all Physics faculty have an office listed. The result of the computation should be stored with the name `all-physics-third-floor`. :::spoiler **Hint:** There are multiple ways how to approach this task. Write down a to-do list of the intermediate computation(s) you might need. Where does it make sense to apply a table operation? Where does it make sense to make a helper function? ::: **Task 15:** Write a function called `get-phone` that takes in a faculty name (as a `String`) and returns that faculty member's phone number as a `String`. If a faculty member of that name is not in `FACULTY-DIR`, this function should `raise("faculty name not in table")`. You can assume that names are unique in this table, that is, no two faculty have the same name. ## Check Block (Autograder Compatibility) When you complete all the tasks of this homework, please copy the following `check` block into the bottom of your code file! ``` check "functions exist and have correct inputs": in-CIT("") is false in-building("", "") is false is-string(get-room-number("CIT 333")) is true is-table(rows-in-CIT) is true is-table(no-office-fac) is true is-string(largest-office-fac) is true is-boolean(all-physics-third-floor) is true is-string(get-phone("Strong")) is true end ``` The `check` block will be checking that all required functions and names are included, correctly named, and that they handle inputs in the right order. If you see this block appear in the interactions window after running it, then you are fine! Please submit to [Gradescope](https://www.gradescope.com/). &NewLine; ![](https://i.imgur.com/vp6aMHK.png) If not, double-check your function names, input types, and input order. If you are stuck at any point, please feel free to come to hours or post on [Ed](https://edstem.org/us/courses/35613/)! ## Part 4: What Your Car Won't Tell You ... (SRC) :::info Learning Goals: - To learn about ways data are gathered about people - To think about the implications of data tracking ::: Data-enabled devices have access to a lot of data about us. What is getting collected, and what control might we have over this collection? **Task 16:** Read the article [“Your Car Knows When You Gain Weight”](https://www.nytimes.com/2019/05/20/opinion/car-repair-data-privacy.html) on how the objects we use are also collecting data on us, and who has the rights to use those data. (You can use [this guide to access the New York Times through a free academic pass](https://library-brown-edu.revproxy.brown.edu/eresources/nytimes.php) if needed.) **Task 17:** Answer the following questions in a text editor in your choice - What's something in the article that you found surprising or interesting? - Collected Data - What's one example of collected car data that you think the driver should own or control? - What's one example of collected car data that you think the car manufacturer should own or control? - Identify another object you use in your daily life that could be collecting data from you to improve its features. - Name the object (e.g., “my car”). - What data does the object collect? - What does the object use that data for? - What's a potential misuse of that data, either by the company that gathers the data or by a third-party that could plausibly/legally gain access to that data? There are no right or wrong answers here as long as your answers are plausible and concrete (meaning you talk about a specific object rather than a broad category like "all products"). For this assignment, we are having you practice being concrete in talking about the context of computing technology and identifying potential impacts of data collected by objects around us. ## Handin - Download both your solutions file and your test file (instructions about creating the test file are in Part 2) and make sure they are called `hw3-code.arr` and `hw3-tests-examples.arr` respectively. Hand in your work on [Gradescope](https://www.gradescope.com/courses/498061) in the assignment named "Homework 3 - Programming" . - Hand in the written question solutions in Gradescope in the assignment named "Homework 3 - Written". ## Theme Song [Superheroes](https://www.youtube.com/watch?v=WIm1GgfRz6M) by The Script ------ > Brown University CSCI 0111 (Spring 2023) <iframe src="https://docs.google.com/forms/d/e/1FAIpQLSccr39t2Ogdns4h-Xm-UfZIEztrEo7PluyrrNFVSYPa3RPKaw/viewform?embedded=true" width="640" height="372" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>