Skip to content

Commit a3b0abb

Browse files
authored
feat: adds lesson_13 homework and lesson_14 pre-work (code-differently#469)
Signed-off-by: Anthony D. Mays <[email protected]>
1 parent f1b4fa1 commit a3b0abb

File tree

24 files changed

+6794
-1
lines changed

24 files changed

+6794
-1
lines changed

lesson_13/README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,9 @@ Please review the following resources before lecture:
99

1010
## Homework
1111

12-
- TODO(anthonydmays): Add additional details when ready.
12+
- [ ] Implement the `findPermutationDifference` method in [Lesson13.java](./maps_java/maps_app/src/main/java/com/codedifferently/lesson13/Lesson13.java).
13+
- [ ] Do pre-work for [lesson 14](/lesson_14/).
14+
15+
## Extra Credit
16+
17+
- [ ] Implement the TypeScript version in [lesson13.ts](./maps_ts/src/lesson13.ts).

lesson_13/maps_java/.gitattributes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#
2+
# https://help.github.com/articles/dealing-with-line-endings/
3+
#
4+
# Linux start script should use lf
5+
/gradlew text eol=lf
6+
7+
# These are Windows script files and should use crlf
8+
*.bat text eol=crlf
9+

lesson_13/maps_java/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Ignore Gradle project-specific cache directory
2+
.gradle
3+
4+
# Ignore Gradle build output directory
5+
build
42.6 KB
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
6+
zipStoreBase=GRADLE_USER_HOME
7+
zipStorePath=wrapper/dists

lesson_13/maps_java/gradlew

Lines changed: 252 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lesson_13/maps_java/gradlew.bat

Lines changed: 94 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)