Skip to content

Commit

Permalink
chore: day12 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Roshu2003 committed Apr 16, 2024
1 parent 0a82591 commit 71dca53
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Easy/Day12/Problem.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Once Bob needed to find the second order statistics of a sequence of integer numbers.
Lets choose each number from the sequence exactly once and sort them.
The value on the second position is the second order statistics of the given sequence.
In other words it is the smallest element strictly greater than the minimum. Help Bob solve this problem.
6 changes: 6 additions & 0 deletions Easy/Day12/Sample.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Input
4
1 2 2 -4

Output
1
1 change: 1 addition & 0 deletions Easy/Day12/Solution.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// Write Your Code Here

0 comments on commit 71dca53

Please sign in to comment.