Skip to content

Commit

Permalink
Solve Q14,Q15
Browse files Browse the repository at this point in the history
  • Loading branch information
csharpython committed Mar 18, 2024
1 parent 0596f69 commit 6862b90
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Src.lean
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import Src.Problem1
import Src.Problem10
import Src.Problem14
import Src.Problem15
import Src.Problem2
import Src.Problem3
import Src.Problem31
Expand Down
21 changes: 21 additions & 0 deletions Src/Problem14.lean
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/-
# Problem 14
Duplicate the elements of a list.
-/

variable {α : Type}

def dupli (l : List α) : List α :=
-- sorry
match l with
| [] => []
| a :: b => a :: a :: dupli b
-- sorry

-- The following code is a test case and you should not change it.

example : dupli [1,2,3] = [1,1,2,2,3,3] := by rfl

example : dupli ([] : List α) = [] := by rfl

example : dupli ['a','b','c','c','d'] = ['a','a','b','b','c','c','c','c','d','d'] := by rfl
29 changes: 29 additions & 0 deletions Src/Problem15.lean
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/-
# Problem 15
Replicate the elements of a list a given number of times.
-/

variable {α : Type}

def repli (l : List α)(n : Nat) : List α :=
-- sorry
match l with
| [] => []
| a :: b => (solorepl a n) ++ repli b n
where solorepl (x : α)(n : Nat) : List α :=
match n with
| 0 => []
| Nat.succ m => x :: solorepl x m
-- sorry

-- The following code is a test case and you should not change it.

example : repli [1,2,3] 3 = [1,1,1,2,2,2,3,3,3] := by rfl

example : repli [1,2,3] 2 = [1,1,2,2,3,3] := by rfl

example : repli [1,2,3] 1 = [1,2,3] := by rfl

example : repli [1,2,3] 0 = [] := by rfl

example : repli ([] : List α) 255 = [] := by rfl
5 changes: 5 additions & 0 deletions md/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@
* [9: Pack consecutive duplicates](./build/Problem9.md)
* [10: Run-length encoding](./build/Problem10.md)

# 11-20: Lists, continued

* [14: Duplicate elements](./build/Problem14.md)
* [15: Replicate elements K times](./build/Problem15.md)

# 31-40: Arithmetic

* [31: Prime number detection](./build/Problem31.md)
Expand Down

0 comments on commit 6862b90

Please sign in to comment.