Skip to content

Commit 9709d34

Browse files
authored
Merge branch 'code-differently:main' into primary/lesson_07
2 parents 4fc3831 + ff75e98 commit 9709d34

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

lesson_08/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ Please review the following resources before lecture:
1616
- [ ] Memorize the `printPermutations` and `reverseString` methods in [algos_app][algos-app].
1717
- [ ] Do pre-work for [lesson 09](/lesson_09/).
1818

19-
[algos-app]: ./algos/algos_app/src/main/java/com/codedifferently/lesson08/Lesson08.java
19+
[algos-app]: ./algos/src/lesson8.ts

lesson_09/README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,17 @@ For this exercise, you will use your knowledge of data types to identify the app
1919
1. Execute the app providing a unique provider name.
2020

2121
```bash
22+
cd lesson_09/types
2223
./gradlew bootRun --args="yourprovidername" # Substitute with your own value
2324
```
2425
2. Examine the file that was created for you in the [resources/data][resources-folder] folder. The file will be formatted using the [JSON][json-link] data format.
2526
3. Next, you will create a `DataProvider` implementation that will provide information about the data types for the columns in the file (e.g. `column1`, `column2`, etc.). You can view the example [AnthonyMaysProvider.java][example-file] file.
2627
4. Customize the data types map by choosing the closest appropriate data type of each column. Each data type should only be used **once**.
27-
5. As usual, make sure to apply the formatter and run the tests to confirm that you've implemented everything correctly.
28+
5. Make sure to apply the formatter and run the tests to confirm that you've implemented everything correctly.
29+
```bash
30+
./gradlew spotlessApply
31+
./gradlew check
32+
```
2833
6. You are to submit a PR with your `DataProvider` implementation and the generated `.json` file that was produced for you. All build checks must pass in order to receive full credit.
2934

3035
[json-link]: https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Objects/JSON

0 commit comments

Comments
 (0)