Skip to content

Commit 4222766

Browse files
committed
fix(quotes): remove backspace character from kotlin quote
1 parent c95b6bd commit 4222766

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/static/quotes/code_kotlin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"length": 242
6363
},
6464
{
65-
"text": "fun insertionSort(arr: IntArray) {\n\tval n = arr.size\n\tfor (i in 1 until n) {\n\t\tval key = arr[i]\b\t\tvar j = i - 1\n\t\twhile (j >= 0 && arr[j] > key) {\n\t\t\tarr[j + 1] = arr[j]\n\t\t\tj--\n\t\t}\n\t\tarr[j + 1] = key\n\t}\n}",
65+
"text": "fun insertionSort(arr: IntArray) {\n\tval n = arr.size\n\tfor (i in 1 until n) {\n\t\tval key = arr[i]\n\t\tvar j = i - 1\n\t\twhile (j >= 0 && arr[j] > key) {\n\t\t\tarr[j + 1] = arr[j]\n\t\t\tj--\n\t\t}\n\t\tarr[j + 1] = key\n\t}\n}",
6666
"source": "bealdung.com - InsertionSort",
6767
"id": 10,
6868
"length": 204

0 commit comments

Comments
 (0)