From 590cfbf8320a0177cc5d0fb487d259536795c89c Mon Sep 17 00:00:00 2001 From: James Chen-Smith Date: Thu, 10 Oct 2024 15:39:14 -0500 Subject: [PATCH] Solve 9v006705493c000000000513 --- challenges/9v006705493c000000000513/cmd | 1 + challenges/9v006705493c000000000513/in | 22 ++++++++++++++++++++++ challenges/9v006705493c000000000513/out | 22 ++++++++++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 challenges/9v006705493c000000000513/cmd create mode 100644 challenges/9v006705493c000000000513/in create mode 100644 challenges/9v006705493c000000000513/out diff --git a/challenges/9v006705493c000000000513/cmd b/challenges/9v006705493c000000000513/cmd new file mode 100644 index 0000000..450a8c7 --- /dev/null +++ b/challenges/9v006705493c000000000513/cmd @@ -0,0 +1 @@ +%s_d~q diff --git a/challenges/9v006705493c000000000513/in b/challenges/9v006705493c000000000513/in new file mode 100644 index 0000000..c3b2d39 --- /dev/null +++ b/challenges/9v006705493c000000000513/in @@ -0,0 +1,22 @@ +case class User( + id: Long, + username: String, + email: String, + first_name: String, + last_name: String, + age: Int, + gender: String, + phone_number: String, + address: String, + city: String, + country: String, + postal_code: String, + occupation: String, + company: String, + salary: Double, + is_active: Boolean, + registration_date: java.time.LocalDate, + last_login_date: java.time.LocalDateTime, + preferences: Map[String, String], + roles: List[String] +) diff --git a/challenges/9v006705493c000000000513/out b/challenges/9v006705493c000000000513/out new file mode 100644 index 0000000..eb5eafe --- /dev/null +++ b/challenges/9v006705493c000000000513/out @@ -0,0 +1,22 @@ +case class User( + id: Long, + username: String, + email: String, + firstName: String, + lastName: String, + age: Int, + gender: String, + phoneNumber: String, + address: String, + city: String, + country: String, + postalCode: String, + occupation: String, + company: String, + salary: Double, + isActive: Boolean, + registrationDate: java.time.LocalDate, + lastLoginDate: java.time.LocalDateTime, + preferences: Map[String, String], + roles: List[String] +)