diff --git a/examples/_data.ts b/examples/_data.ts index 067f72505..b45f7bd95 100644 --- a/examples/_data.ts +++ b/examples/_data.ts @@ -376,6 +376,12 @@ export const items = [ type: "example", category: "File system", }, + { + title: "Checking for directory existence", + href: "/examples/checking_directory_existence/", + type: "example", + category: "File system", + }, { title: "Moving/Renaming files", href: "/examples/moving_renaming_files/", @@ -742,6 +748,12 @@ export const items = [ type: "example", category: "Cryptography", }, + { + title: "Shamir's Secret Sharing", + href: "/examples/sss/", + type: "example", + category: "Cryptography", + }, // Testing { diff --git a/examples/scripts/sss.ts b/examples/scripts/sss.ts index 51aefb051..86cb127b8 100644 --- a/examples/scripts/sss.ts +++ b/examples/scripts/sss.ts @@ -1,5 +1,5 @@ /** - * @title Shamir's Secret Sharing Implementation + * @title Shamir's Secret Sharing * @difficulty intermediate * @tags cli * @run