Skip to content

Commit

Permalink
Solve 9v006705493c000000000513
Browse files Browse the repository at this point in the history
  • Loading branch information
jameschensmith committed Oct 10, 2024
1 parent 7ddfd16 commit 590cfbf
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
1 change: 1 addition & 0 deletions challenges/9v006705493c000000000513/cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
%s_<ret>d~<space>q
22 changes: 22 additions & 0 deletions challenges/9v006705493c000000000513/in
Original file line number Diff line number Diff line change
@@ -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]
)
22 changes: 22 additions & 0 deletions challenges/9v006705493c000000000513/out
Original file line number Diff line number Diff line change
@@ -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]
)

0 comments on commit 590cfbf

Please sign in to comment.