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
15 changes: 5 additions & 10 deletions archive/g/go/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Welcome to Sample Programs in Go! To find documentation related to the Go code in this repo, look [here](https://sampleprograms.io/languages/go).

## Sample Programs List - 35/39 :smile:
## Sample Programs List - 39/39 :partying_face:

In this section, we feature a list of completed and missing programs in Go. See above for the current amount of completed programs in Go. If you see a program that is missing and would like to add it, please submit an issue, so we can assign it to you.

Expand All @@ -18,6 +18,9 @@ Below, you'll find a list of completed code snippets in Go. Code snippets preced
- :warning: [Binary Search in Go](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+binary+search+go) [[Requirements](https://sampleprograms.io/projects/binary-search)]
- :white_check_mark: [Bubble Sort in Go](https://sampleprograms.io/projects/bubble-sort/go) [[Requirements](https://sampleprograms.io/projects/bubble-sort)]
- :warning: [Capitalize in Go](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+capitalize+go) [[Requirements](https://sampleprograms.io/projects/capitalize)]
- :warning: [Convex Hull in Go](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+convex+hull+go) [[Requirements](https://sampleprograms.io/projects/convex-hull)]
- :warning: [Depth First Search in Go](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+depth+first+search+go) [[Requirements](https://sampleprograms.io/projects/depth-first-search)]
- :warning: [Dijkstra in Go](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+dijkstra+go) [[Requirements](https://sampleprograms.io/projects/dijkstra)]
- :warning: [Duplicate Character Counter in Go](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+duplicate+character+counter+go) [[Requirements](https://sampleprograms.io/projects/duplicate-character-counter)]
- :warning: [Even Odd in Go](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+even+odd+go) [[Requirements](https://sampleprograms.io/projects/even-odd)]
- :warning: [Factorial in Go](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+factorial+go) [[Requirements](https://sampleprograms.io/projects/factorial)]
Expand All @@ -36,6 +39,7 @@ Below, you'll find a list of completed code snippets in Go. Code snippets preced
- :warning: [Maximum Array Rotation in Go](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+maximum+array+rotation+go) [[Requirements](https://sampleprograms.io/projects/maximum-array-rotation)]
- :warning: [Maximum Subarray in Go](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+maximum+subarray+go) [[Requirements](https://sampleprograms.io/projects/maximum-subarray)]
- :warning: [Merge Sort in Go](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+merge+sort+go) [[Requirements](https://sampleprograms.io/projects/merge-sort)]
- :warning: [Minimum Spanning Tree in Go](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+minimum+spanning+tree+go) [[Requirements](https://sampleprograms.io/projects/minimum-spanning-tree)]
- :warning: [Palindromic Number in Go](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+palindromic+number+go) [[Requirements](https://sampleprograms.io/projects/palindromic-number)]
- :warning: [Prime Number in Go](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+prime+number+go) [[Requirements](https://sampleprograms.io/projects/prime-number)]
- :warning: [Quick Sort in Go](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+quick+sort+go) [[Requirements](https://sampleprograms.io/projects/quick-sort)]
Expand All @@ -49,15 +53,6 @@ Below, you'll find a list of completed code snippets in Go. Code snippets preced
- :warning: [Transpose Matrix in Go](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+transpose+matrix+go) [[Requirements](https://sampleprograms.io/projects/transpose-matrix)]
- :warning: [Zeckendorf in Go](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+zeckendorf+go) [[Requirements](https://sampleprograms.io/projects/zeckendorf)]

### Missing Programs

The following list contains all of the approved programs that are not currently implemented in Go. Click on the name of the project to easily open an issue in GitHub. Alternatively, click requirements to check out the description of the project.

- :x: [Convex Hull](https://github.com/TheRenegadeCoder/sample-programs/issues/new?assignees=&labels=enhancement,convex+hull&template=code-snippet-request.md&title=Add+Convex+Hull+in+Go) [[Requirements](https://sampleprograms.io/projects/convex-hull)]
- :x: [Depth First Search](https://github.com/TheRenegadeCoder/sample-programs/issues/new?assignees=&labels=enhancement,depth+first+search&template=code-snippet-request.md&title=Add+Depth+First+Search+in+Go) [[Requirements](https://sampleprograms.io/projects/depth-first-search)]
- :x: [Dijkstra](https://github.com/TheRenegadeCoder/sample-programs/issues/new?assignees=&labels=enhancement,dijkstra&template=code-snippet-request.md&title=Add+Dijkstra+in+Go) [[Requirements](https://sampleprograms.io/projects/dijkstra)]
- :x: [Minimum Spanning Tree](https://github.com/TheRenegadeCoder/sample-programs/issues/new?assignees=&labels=enhancement,minimum+spanning+tree&template=code-snippet-request.md&title=Add+Minimum+Spanning+Tree+in+Go) [[Requirements](https://sampleprograms.io/projects/minimum-spanning-tree)]

## Testing

The following list shares details about how we name all Sample Programs in Go:
Expand Down
17 changes: 6 additions & 11 deletions archive/j/javascript/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Welcome to Sample Programs in JavaScript! To find documentation related to the JavaScript code in this repo, look [here](https://sampleprograms.io/languages/javascript).

## Sample Programs List - 34/39 :smile:
## Sample Programs List - 39/39 :partying_face:

In this section, we feature a list of completed and missing programs in JavaScript. See above for the current amount of completed programs in JavaScript. If you see a program that is missing and would like to add it, please submit an issue, so we can assign it to you.

Expand All @@ -19,12 +19,15 @@ Below, you'll find a list of completed code snippets in JavaScript. Code snippet
- :warning: [Bubble Sort in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+bubble+sort+javascript) [[Requirements](https://sampleprograms.io/projects/bubble-sort)]
- :warning: [Capitalize in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+capitalize+javascript) [[Requirements](https://sampleprograms.io/projects/capitalize)]
- :warning: [Convex Hull in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+convex+hull+javascript) [[Requirements](https://sampleprograms.io/projects/convex-hull)]
- :warning: [Depth First Search in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+depth+first+search+javascript) [[Requirements](https://sampleprograms.io/projects/depth-first-search)]
- :warning: [Dijkstra in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+dijkstra+javascript) [[Requirements](https://sampleprograms.io/projects/dijkstra)]
- :warning: [Duplicate Character Counter in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+duplicate+character+counter+javascript) [[Requirements](https://sampleprograms.io/projects/duplicate-character-counter)]
- :warning: [Even Odd in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+even+odd+javascript) [[Requirements](https://sampleprograms.io/projects/even-odd)]
- :warning: [Factorial in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+factorial+javascript) [[Requirements](https://sampleprograms.io/projects/factorial)]
- :white_check_mark: [Fibonacci in JavaScript](https://sampleprograms.io/projects/fibonacci/javascript) [[Requirements](https://sampleprograms.io/projects/fibonacci)]
- :warning: [File Input Output in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+file+input+output+javascript) [[Requirements](https://sampleprograms.io/projects/file-input-output)]
- :white_check_mark: [Fizz Buzz in JavaScript](https://sampleprograms.io/projects/fizz-buzz/javascript) [[Requirements](https://sampleprograms.io/projects/fizz-buzz)]
- :warning: [Fraction Math in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+fraction+math+javascript) [[Requirements](https://sampleprograms.io/projects/fraction-math)]
- :warning: [Hello World in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+hello+world+javascript) [[Requirements](https://sampleprograms.io/projects/hello-world)]
- :warning: [Insertion Sort in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+insertion+sort+javascript) [[Requirements](https://sampleprograms.io/projects/insertion-sort)]
- :warning: [Job Sequencing in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+job+sequencing+javascript) [[Requirements](https://sampleprograms.io/projects/job-sequencing)]
Expand All @@ -33,8 +36,10 @@ Below, you'll find a list of completed code snippets in JavaScript. Code snippet
- :warning: [Longest Common Subsequence in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+longest+common+subsequence+javascript) [[Requirements](https://sampleprograms.io/projects/longest-common-subsequence)]
- :warning: [Longest Palindromic Substring in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+longest+palindromic+substring+javascript) [[Requirements](https://sampleprograms.io/projects/longest-palindromic-substring)]
- :warning: [Longest Word in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+longest+word+javascript) [[Requirements](https://sampleprograms.io/projects/longest-word)]
- :warning: [Maximum Array Rotation in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+maximum+array+rotation+javascript) [[Requirements](https://sampleprograms.io/projects/maximum-array-rotation)]
- :warning: [Maximum Subarray in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+maximum+subarray+javascript) [[Requirements](https://sampleprograms.io/projects/maximum-subarray)]
- :warning: [Merge Sort in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+merge+sort+javascript) [[Requirements](https://sampleprograms.io/projects/merge-sort)]
- :warning: [Minimum Spanning Tree in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+minimum+spanning+tree+javascript) [[Requirements](https://sampleprograms.io/projects/minimum-spanning-tree)]
- :warning: [Palindromic Number in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+palindromic+number+javascript) [[Requirements](https://sampleprograms.io/projects/palindromic-number)]
- :warning: [Prime Number in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+prime+number+javascript) [[Requirements](https://sampleprograms.io/projects/prime-number)]
- :warning: [Quick Sort in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+quick+sort+javascript) [[Requirements](https://sampleprograms.io/projects/quick-sort)]
Expand All @@ -48,16 +53,6 @@ Below, you'll find a list of completed code snippets in JavaScript. Code snippet
- :warning: [Transpose Matrix in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+transpose+matrix+javascript) [[Requirements](https://sampleprograms.io/projects/transpose-matrix)]
- :warning: [Zeckendorf in JavaScript](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+zeckendorf+javascript) [[Requirements](https://sampleprograms.io/projects/zeckendorf)]

### Missing Programs

The following list contains all of the approved programs that are not currently implemented in JavaScript. Click on the name of the project to easily open an issue in GitHub. Alternatively, click requirements to check out the description of the project.

- :x: [Depth First Search](https://github.com/TheRenegadeCoder/sample-programs/issues/new?assignees=&labels=enhancement,depth+first+search&template=code-snippet-request.md&title=Add+Depth+First+Search+in+JavaScript) [[Requirements](https://sampleprograms.io/projects/depth-first-search)]
- :x: [Duplicate Character Counter](https://github.com/TheRenegadeCoder/sample-programs/issues/new?assignees=&labels=enhancement,duplicate+character+counter&template=code-snippet-request.md&title=Add+Duplicate+Character+Counter+in+JavaScript) [[Requirements](https://sampleprograms.io/projects/duplicate-character-counter)]
- :x: [Fraction Math](https://github.com/TheRenegadeCoder/sample-programs/issues/new?assignees=&labels=enhancement,fraction+math&template=code-snippet-request.md&title=Add+Fraction+Math+in+JavaScript) [[Requirements](https://sampleprograms.io/projects/fraction-math)]
- :x: [Maximum Array Rotation](https://github.com/TheRenegadeCoder/sample-programs/issues/new?assignees=&labels=enhancement,maximum+array+rotation&template=code-snippet-request.md&title=Add+Maximum+Array+Rotation+in+JavaScript) [[Requirements](https://sampleprograms.io/projects/maximum-array-rotation)]
- :x: [Minimum Spanning Tree](https://github.com/TheRenegadeCoder/sample-programs/issues/new?assignees=&labels=enhancement,minimum+spanning+tree&template=code-snippet-request.md&title=Add+Minimum+Spanning+Tree+in+JavaScript) [[Requirements](https://sampleprograms.io/projects/minimum-spanning-tree)]

## Testing

The following list shares details about how we name all Sample Programs in JavaScript:
Expand Down
4 changes: 2 additions & 2 deletions archive/m/modula2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Welcome to Sample Programs in Modula-2! To find documentation related to the Modula-2 code in this repo, look [here](https://sampleprograms.io/languages/modula2).

## Sample Programs List - 2/39 :disappointed:
## Sample Programs List - 3/39 :disappointed:

In this section, we feature a list of completed and missing programs in Modula-2. See above for the current amount of completed programs in Modula-2. If you see a program that is missing and would like to add it, please submit an issue, so we can assign it to you.

Expand All @@ -14,6 +14,7 @@ In this section, we feature a list of completed and missing programs in Modula-2
Below, you'll find a list of completed code snippets in Modula-2. Code snippets preceded by :warning: link to a GitHub issue query featuring a possible article request issue. If an article request issue doesn't exist, we encourage you to create one. Meanwhile, code snippets preceded by :white_check_mark: link to an existing article which provides further documentation. To see the list of approved projects, check out the official Sample Programs projects list.

- :warning: [Baklava in Modula-2](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+baklava+modula-2) [[Requirements](https://sampleprograms.io/projects/baklava)]
- :warning: [Fraction Math in Modula-2](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+fraction+math+modula-2) [[Requirements](https://sampleprograms.io/projects/fraction-math)]
- :warning: [Hello World in Modula-2](https://github.com//TheRenegadeCoder/sample-programs-website/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+hello+world+modula-2) [[Requirements](https://sampleprograms.io/projects/hello-world)]

### Missing Programs
Expand All @@ -33,7 +34,6 @@ The following list contains all of the approved programs that are not currently
- :x: [Fibonacci](https://github.com/TheRenegadeCoder/sample-programs/issues/new?assignees=&labels=enhancement,fibonacci&template=code-snippet-request.md&title=Add+Fibonacci+in+Modula-2) [[Requirements](https://sampleprograms.io/projects/fibonacci)]
- :x: [File Input Output](https://github.com/TheRenegadeCoder/sample-programs/issues/new?assignees=&labels=enhancement,file+input+output&template=code-snippet-request.md&title=Add+File+Input+Output+in+Modula-2) [[Requirements](https://sampleprograms.io/projects/file-input-output)]
- :x: [Fizz Buzz](https://github.com/TheRenegadeCoder/sample-programs/issues/new?assignees=&labels=enhancement,fizz+buzz&template=code-snippet-request.md&title=Add+Fizz+Buzz+in+Modula-2) [[Requirements](https://sampleprograms.io/projects/fizz-buzz)]
- :x: [Fraction Math](https://github.com/TheRenegadeCoder/sample-programs/issues/new?assignees=&labels=enhancement,fraction+math&template=code-snippet-request.md&title=Add+Fraction+Math+in+Modula-2) [[Requirements](https://sampleprograms.io/projects/fraction-math)]
- :x: [Insertion Sort](https://github.com/TheRenegadeCoder/sample-programs/issues/new?assignees=&labels=enhancement,insertion+sort&template=code-snippet-request.md&title=Add+Insertion+Sort+in+Modula-2) [[Requirements](https://sampleprograms.io/projects/insertion-sort)]
- :x: [Job Sequencing](https://github.com/TheRenegadeCoder/sample-programs/issues/new?assignees=&labels=enhancement,job+sequencing&template=code-snippet-request.md&title=Add+Job+Sequencing+in+Modula-2) [[Requirements](https://sampleprograms.io/projects/job-sequencing)]
- :x: [Josephus Problem](https://github.com/TheRenegadeCoder/sample-programs/issues/new?assignees=&labels=enhancement,josephus+problem&template=code-snippet-request.md&title=Add+Josephus+Problem+in+Modula-2) [[Requirements](https://sampleprograms.io/projects/josephus-problem)]
Expand Down
Loading
Loading