Skip to content

Commit

Permalink
style(Sorting): 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
2wndrhs committed Jan 18, 2024
1 parent 583a1da commit 9224d0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sorting/mergeSort.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Problem
// 배열의 원소를 오름차순으로 정렬하는 `insertionSort` 함수 작성
// 배열의 원소를 오름차순으로 정렬하는 `mergeSort` 함수 작성

// Input
// 임의의 정수 배열 `array`
Expand Down
2 changes: 1 addition & 1 deletion Sorting/quickSort.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Problem
// 배열의 원소를 오름차순으로 정렬하는 `insertionSort` 함수 작성
// 배열의 원소를 오름차순으로 정렬하는 `quickSort` 함수 작성

// Input
// 임의의 정수 배열 `array`, 배열의 시작 인덱스 `start`, 배열의 끝 인덱스 `end`
Expand Down

0 comments on commit 9224d0f

Please sign in to comment.