From 9b84fd3e60316557ad7d5ec61e121b04cadd6430 Mon Sep 17 00:00:00 2001 From: James Su Date: Tue, 12 Nov 2019 16:09:16 +0000 Subject: [PATCH] Update Insertion Sort.md --- .../Computer Science/ICS4U1/Sorting Methods/Insertion Sort.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Grade 10/Computer Science/ICS4U1/Sorting Methods/Insertion Sort.md b/Grade 10/Computer Science/ICS4U1/Sorting Methods/Insertion Sort.md index 6827c27..731a0b8 100644 --- a/Grade 10/Computer Science/ICS4U1/Sorting Methods/Insertion Sort.md +++ b/Grade 10/Computer Science/ICS4U1/Sorting Methods/Insertion Sort.md @@ -18,7 +18,7 @@ - Duplicate the larger element in to one ahead of its current index each time the key is tested - By looping this, it makes space and inserts the key into that correct position -## Pseudo0code +## Pseudo code ``` for x = 1 : n key = list[x]