From a8d0545b02bd587396bdfdb98ff5543767c6c70c Mon Sep 17 00:00:00 2001 From: Siyong Date: Tue, 16 Jun 2020 18:56:34 -0700 Subject: [PATCH] Update Sorting_Custom.md --- content/4_Silver/Sorting_Custom.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/4_Silver/Sorting_Custom.md b/content/4_Silver/Sorting_Custom.md index bedcaaf..7d62caa 100644 --- a/content/4_Silver/Sorting_Custom.md +++ b/content/4_Silver/Sorting_Custom.md @@ -203,6 +203,8 @@ Foo(0) Foo(1) Foo(1) Foo(2) Foo(5) Foo(5) Foo(8) Foo(9) ### Remapping Key - This method maps an object to another comparable datatype with which to be sorted. In this case, `Foo` is sorted by the sum of its members `x` and `y`. + + ```py import random