From cb3f9d7f58e4f7dc653198a08bd0b9ae30c08d4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Antonio=20Chac=C3=B3n=20Guti=C3=A9rrez?= <138903866+joseantoniochacon@users.noreply.github.com> Date: Thu, 26 Sep 2024 22:39:30 -0600 Subject: [PATCH] Create README - LeetHub --- 1667-fix-names-in-a-table/README.md | 40 +++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 1667-fix-names-in-a-table/README.md diff --git a/1667-fix-names-in-a-table/README.md b/1667-fix-names-in-a-table/README.md new file mode 100644 index 0000000..e35a3fe --- /dev/null +++ b/1667-fix-names-in-a-table/README.md @@ -0,0 +1,40 @@ +
Table: Users
+----------------+---------+ +| Column Name | Type | ++----------------+---------+ +| user_id | int | +| name | varchar | ++----------------+---------+ +user_id is the primary key (column with unique values) for this table. +This table contains the ID and the name of the user. The name consists of only lowercase and uppercase characters. ++ +
+ +
Write a solution to fix the names so that only the first character is uppercase and the rest are lowercase.
+ +Return the result table ordered by user_id
.
The result format is in the following example.
+ ++
Example 1:
+ +Input: +Users table: ++---------+-------+ +| user_id | name | ++---------+-------+ +| 1 | aLice | +| 2 | bOB | ++---------+-------+ +Output: ++---------+-------+ +| user_id | name | ++---------+-------+ +| 1 | Alice | +| 2 | Bob | ++---------+-------+ ++