Skip to content
This repository has been archived by the owner on Jul 10, 2024. It is now read-only.

Auto Create Issue - 4 #5069

Merged
merged 2 commits into from
Jan 8, 2024
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
4 changes: 2 additions & 2 deletions program/data/programs.json
Original file line number Diff line number Diff line change
Expand Up @@ -1463,8 +1463,8 @@
"contributor": "harshraj8843",
"createdAt": "2024-01-08T07:14:24.986Z",
"createdIssueNumber": "5057",
"publishedAt": "",
"created": false
"publishedAt": "2024-01-08T07:35:15.390Z",
"created": true
},
{
"title": "Find the sum of all numbers in an array",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
title: Find the smallest two elements in an array
trackId: 5068
---

## Write a program to find the smallest two elements in an array

```txt
Input : arr[] = {12, 13, 1, 10, 34, 1}
Output : 1 1

Input : arr[] = {10, 5, 10}
Output : 5 10
```

---