Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions examples/_data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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/",
Expand Down Expand Up @@ -742,6 +748,12 @@ export const items = [
type: "example",
category: "Cryptography",
},
{
title: "Shamir's Secret Sharing",
href: "/examples/sss/",
type: "example",
category: "Cryptography",
},

// Testing
{
Expand Down
2 changes: 1 addition & 1 deletion examples/scripts/sss.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @title Shamir's Secret Sharing Implementation
* @title Shamir's Secret Sharing
* @difficulty intermediate
* @tags cli
* @run <url>
Expand Down
Loading