Skip to content

Commit 4da412c

Browse files
committed
Change the class name to question title.
1 parent d12ee96 commit 4da412c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Sort/ArrayPartitionI.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class Solution {
1+
class ArrayPartitionI {
22
func arrayPairSum(_ nums: [Int]) -> Int {
33
var arr = nums
44
arr = arr.sorted { $0 < $1 }

Tree/MergeTwoBinaryTrees.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* }
1212
* }
1313
*/
14-
class Solution {
14+
class MergeTwoBinaryTrees {
1515
func mergeTrees(_ t1: TreeNode?, _ t2: TreeNode?) -> TreeNode? {
1616
guard let t1 = t1 else {
1717
return t2

0 commit comments

Comments
 (0)