From d55ca46c97db5f612e216a0d23eafa985bad6eb4 Mon Sep 17 00:00:00 2001 From: Chalarangelo Date: Tue, 22 Mar 2022 12:32:56 +0200 Subject: [PATCH] Update snippet authors --- snippets/add_days.md | 1 + snippets/binomial_coefficient.md | 1 + snippets/collect_dictionary.md | 1 + snippets/combine_values.md | 1 + snippets/cumsum.md | 1 + snippets/daterange.md | 1 + snippets/days_ago.md | 1 + snippets/days_diff.md | 1 + snippets/days_from_now.md | 1 + snippets/dict_to_list.md | 1 + snippets/drop.md | 1 + snippets/drop_right.md | 1 + snippets/find_index_of_all.md | 1 + snippets/find_key.md | 1 + snippets/find_keys.md | 1 + snippets/find_parity_outliers.md | 1 + snippets/for_each.md | 1 + snippets/for_each_right.md | 1 + snippets/frequencies.md | 1 + snippets/from_iso_date.md | 1 + snippets/geometric_progression.md | 1 + snippets/get.md | 1 + snippets/hamming_distance.md | 1 + snippets/have_same_contents.md | 1 + snippets/hex_to_rgb.md | 1 + snippets/includes_all.md | 1 + snippets/includes_any.md | 1 + snippets/invert_dictionary.md | 1 + snippets/is_prime.md | 1 + snippets/is_weekday.md | 1 + snippets/is_weekend.md | 1 + snippets/key_in_dict.md | 1 + snippets/key_of_max.md | 1 + snippets/key_of_min.md | 1 + snippets/km_to_miles.md | 1 + snippets/merge_dictionaries.md | 1 + snippets/miles_to_km.md | 1 + snippets/months_diff.md | 1 + snippets/num_to_range.md | 1 + snippets/pad.md | 1 + snippets/powerset.md | 1 + snippets/reverse_number.md | 1 + snippets/rgb_to_hex.md | 1 + snippets/sort_dict_by_key.md | 1 + snippets/sort_dict_by_value.md | 1 + snippets/sum_of_powers.md | 1 + snippets/take.md | 1 + snippets/take_right.md | 1 + snippets/to_dictionary.md | 1 + snippets/to_iso_date.md | 1 + snippets/to_roman_numeral.md | 1 + snippets/words.md | 1 + 52 files changed, 52 insertions(+) diff --git a/snippets/add_days.md b/snippets/add_days.md index 9375615c3..51e3149b2 100644 --- a/snippets/add_days.md +++ b/snippets/add_days.md @@ -2,6 +2,7 @@ title: Add days to date tags: date expertise: intermediate +author: maciv firstSeen: 2020-10-28T16:19:04+02:00 lastUpdated: 2020-10-28T16:19:04+02:00 --- diff --git a/snippets/binomial_coefficient.md b/snippets/binomial_coefficient.md index 568aecbe4..90b7f3c1c 100644 --- a/snippets/binomial_coefficient.md +++ b/snippets/binomial_coefficient.md @@ -2,6 +2,7 @@ title: Binomial coefficient tags: math expertise: beginner +author: maciv firstSeen: 2020-10-04T11:56:31+03:00 lastUpdated: 2020-11-02T19:27:07+02:00 --- diff --git a/snippets/collect_dictionary.md b/snippets/collect_dictionary.md index 4842558d0..e433db036 100644 --- a/snippets/collect_dictionary.md +++ b/snippets/collect_dictionary.md @@ -2,6 +2,7 @@ title: Invert dictionary tags: dictionary expertise: intermediate +author: maciv firstSeen: 2020-04-07T21:15:06+03:00 lastUpdated: 2020-11-02T19:27:07+02:00 --- diff --git a/snippets/combine_values.md b/snippets/combine_values.md index 5ac9b1568..3e0d99066 100644 --- a/snippets/combine_values.md +++ b/snippets/combine_values.md @@ -2,6 +2,7 @@ title: Combine dictionary values tags: dictionary expertise: intermediate +author: maciv firstSeen: 2021-03-07T12:30:47+02:00 lastUpdated: 2021-04-04T14:32:35+03:00 --- diff --git a/snippets/cumsum.md b/snippets/cumsum.md index 6e3a2a5c5..cc2e971cb 100644 --- a/snippets/cumsum.md +++ b/snippets/cumsum.md @@ -2,6 +2,7 @@ title: Partial sum list tags: list expertise: intermediate +author: maciv firstSeen: 2021-01-13T23:30:41+02:00 lastUpdated: 2021-01-13T23:30:41+02:00 --- diff --git a/snippets/daterange.md b/snippets/daterange.md index 90db90fed..1fbfc8148 100644 --- a/snippets/daterange.md +++ b/snippets/daterange.md @@ -2,6 +2,7 @@ title: Date range tags: date expertise: intermediate +author: maciv firstSeen: 2020-10-28T16:19:14+02:00 lastUpdated: 2021-01-07T23:30:28+02:00 --- diff --git a/snippets/days_ago.md b/snippets/days_ago.md index 43c814b81..d30a039d4 100644 --- a/snippets/days_ago.md +++ b/snippets/days_ago.md @@ -2,6 +2,7 @@ title: Days ago tags: date expertise: intermediate +author: maciv firstSeen: 2020-10-28T16:19:30+02:00 lastUpdated: 2020-10-28T16:19:30+02:00 --- diff --git a/snippets/days_diff.md b/snippets/days_diff.md index 60eeca1cc..194328b0d 100644 --- a/snippets/days_diff.md +++ b/snippets/days_diff.md @@ -2,6 +2,7 @@ title: Date difference in days tags: date expertise: beginner +author: maciv firstSeen: 2020-10-28T16:19:39+02:00 lastUpdated: 2020-10-28T16:19:39+02:00 --- diff --git a/snippets/days_from_now.md b/snippets/days_from_now.md index f8a8167a2..7d2f079e6 100644 --- a/snippets/days_from_now.md +++ b/snippets/days_from_now.md @@ -2,6 +2,7 @@ title: Days from now tags: date expertise: intermediate +author: maciv firstSeen: 2020-10-28T16:19:51+02:00 lastUpdated: 2020-10-28T16:19:51+02:00 --- diff --git a/snippets/dict_to_list.md b/snippets/dict_to_list.md index 1ee34e773..61614a117 100644 --- a/snippets/dict_to_list.md +++ b/snippets/dict_to_list.md @@ -2,6 +2,7 @@ title: Dictionary to list tags: dictionary,list expertise: intermediate +author: maciv firstSeen: 2020-10-16T21:24:14+03:00 lastUpdated: 2020-11-02T19:27:53+02:00 --- diff --git a/snippets/drop.md b/snippets/drop.md index 057b7bdf7..4805f041f 100644 --- a/snippets/drop.md +++ b/snippets/drop.md @@ -2,6 +2,7 @@ title: Drop list elements from the left tags: list expertise: beginner +author: chalarangelo firstSeen: 2020-03-10T21:59:41+02:00 lastUpdated: 2020-11-02T19:27:53+02:00 --- diff --git a/snippets/drop_right.md b/snippets/drop_right.md index c396eb1a8..f1e16447a 100644 --- a/snippets/drop_right.md +++ b/snippets/drop_right.md @@ -2,6 +2,7 @@ title: Drop list elements from the right tags: list expertise: beginner +author: chalarangelo firstSeen: 2020-03-10T21:59:41+02:00 lastUpdated: 2020-11-02T19:27:53+02:00 --- diff --git a/snippets/find_index_of_all.md b/snippets/find_index_of_all.md index fd5f8a708..ca73c4602 100644 --- a/snippets/find_index_of_all.md +++ b/snippets/find_index_of_all.md @@ -2,6 +2,7 @@ title: Find all matching indexes tags: list expertise: intermediate +author: maciv firstSeen: 2020-10-11T13:45:19+03:00 lastUpdated: 2020-11-02T19:27:53+02:00 --- diff --git a/snippets/find_key.md b/snippets/find_key.md index a3f4bd3ad..9a3e8ca41 100644 --- a/snippets/find_key.md +++ b/snippets/find_key.md @@ -2,6 +2,7 @@ title: Find key of value tags: dictionary expertise: intermediate +author: maciv firstSeen: 2020-04-16T19:13:20+03:00 lastUpdated: 2020-11-02T19:27:53+02:00 --- diff --git a/snippets/find_keys.md b/snippets/find_keys.md index 15cef257b..5973e754e 100644 --- a/snippets/find_keys.md +++ b/snippets/find_keys.md @@ -2,6 +2,7 @@ title: Find keys with value tags: dictionary expertise: intermediate +author: maciv firstSeen: 2020-04-16T19:17:13+03:00 lastUpdated: 2020-11-02T19:27:53+02:00 --- diff --git a/snippets/find_parity_outliers.md b/snippets/find_parity_outliers.md index 96b490338..725d6d4eb 100644 --- a/snippets/find_parity_outliers.md +++ b/snippets/find_parity_outliers.md @@ -2,6 +2,7 @@ title: Find parity outliers tags: list,math expertise: intermediate +author: maciv firstSeen: 2020-01-08T18:54:35+02:00 lastUpdated: 2020-11-02T19:27:53+02:00 --- diff --git a/snippets/for_each.md b/snippets/for_each.md index b9bff58cc..1ed764de8 100644 --- a/snippets/for_each.md +++ b/snippets/for_each.md @@ -2,6 +2,7 @@ title: Execute function for each list element tags: list expertise: beginner +author: maciv firstSeen: 2020-03-15T12:54:08+02:00 lastUpdated: 2020-09-15T16:13:06+03:00 --- diff --git a/snippets/for_each_right.md b/snippets/for_each_right.md index 3d4682fd0..e1b5e61f2 100644 --- a/snippets/for_each_right.md +++ b/snippets/for_each_right.md @@ -2,6 +2,7 @@ title: Execute function for each list element in reverse tags: list expertise: beginner +author: maciv firstSeen: 2020-03-15T12:54:08+02:00 lastUpdated: 2020-09-15T16:13:06+03:00 --- diff --git a/snippets/frequencies.md b/snippets/frequencies.md index 4e96c4262..18f167f19 100644 --- a/snippets/frequencies.md +++ b/snippets/frequencies.md @@ -2,6 +2,7 @@ title: Value frequencies tags: list expertise: intermediate +author: maciv firstSeen: 2020-03-15T12:54:08+02:00 lastUpdated: 2020-11-02T19:27:53+02:00 --- diff --git a/snippets/from_iso_date.md b/snippets/from_iso_date.md index 82b2a8477..219d28483 100644 --- a/snippets/from_iso_date.md +++ b/snippets/from_iso_date.md @@ -2,6 +2,7 @@ title: Date from ISO format tags: date expertise: intermediate +author: maciv firstSeen: 2020-10-28T16:20:04+02:00 lastUpdated: 2021-01-07T23:30:28+02:00 --- diff --git a/snippets/geometric_progression.md b/snippets/geometric_progression.md index 052bc06a9..95d6e3b28 100644 --- a/snippets/geometric_progression.md +++ b/snippets/geometric_progression.md @@ -2,6 +2,7 @@ title: Geometric progression tags: math,list expertise: intermediate +author: maciv firstSeen: 2020-10-04T12:19:28+03:00 lastUpdated: 2020-11-02T19:28:05+02:00 --- diff --git a/snippets/get.md b/snippets/get.md index 43874885d..bd15e622a 100644 --- a/snippets/get.md +++ b/snippets/get.md @@ -2,6 +2,7 @@ title: Get nested value tags: dictionary,list expertise: intermediate +author: maciv firstSeen: 2020-10-28T12:21:39+02:00 lastUpdated: 2020-10-28T12:21:39+02:00 --- diff --git a/snippets/hamming_distance.md b/snippets/hamming_distance.md index 4d7cd1c5f..b639801b8 100644 --- a/snippets/hamming_distance.md +++ b/snippets/hamming_distance.md @@ -2,6 +2,7 @@ title: Hamming distance tags: math expertise: intermediate +author: maciv firstSeen: 2021-01-17T13:04:06+02:00 lastUpdated: 2021-02-18T14:22:25+02:00 --- diff --git a/snippets/have_same_contents.md b/snippets/have_same_contents.md index d0b1df6fd..74999ff86 100644 --- a/snippets/have_same_contents.md +++ b/snippets/have_same_contents.md @@ -2,6 +2,7 @@ title: Check lists have same contents tags: list expertise: intermediate +author: maciv firstSeen: 2020-03-15T12:54:08+02:00 lastUpdated: 2020-11-02T19:28:05+02:00 --- diff --git a/snippets/hex_to_rgb.md b/snippets/hex_to_rgb.md index 9dfa88dfb..567d5b10f 100644 --- a/snippets/hex_to_rgb.md +++ b/snippets/hex_to_rgb.md @@ -2,6 +2,7 @@ title: Hex to RGB tags: string,math expertise: intermediate +author: maciv firstSeen: 2020-09-13T01:08:21+03:00 lastUpdated: 2020-09-15T16:13:06+03:00 --- diff --git a/snippets/includes_all.md b/snippets/includes_all.md index 33c2dffbd..c38168656 100644 --- a/snippets/includes_all.md +++ b/snippets/includes_all.md @@ -2,6 +2,7 @@ title: List includes all values tags: list expertise: intermediate +author: maciv firstSeen: 2020-03-15T12:54:08+02:00 lastUpdated: 2020-11-02T19:28:05+02:00 --- diff --git a/snippets/includes_any.md b/snippets/includes_any.md index 25ba8c48d..9e76fbe8c 100644 --- a/snippets/includes_any.md +++ b/snippets/includes_any.md @@ -2,6 +2,7 @@ title: List includes any values tags: list expertise: intermediate +author: maciv firstSeen: 2020-03-15T12:54:08+02:00 lastUpdated: 2020-11-02T19:28:05+02:00 --- diff --git a/snippets/invert_dictionary.md b/snippets/invert_dictionary.md index 88416b05b..ca95f8c56 100644 --- a/snippets/invert_dictionary.md +++ b/snippets/invert_dictionary.md @@ -2,6 +2,7 @@ title: Invert dictionary tags: dictionary expertise: intermediate +author: maciv firstSeen: 2020-04-07T21:13:32+03:00 lastUpdated: 2020-11-02T19:28:05+02:00 --- diff --git a/snippets/is_prime.md b/snippets/is_prime.md index 06135e96c..d0f7bc660 100644 --- a/snippets/is_prime.md +++ b/snippets/is_prime.md @@ -2,6 +2,7 @@ title: Number is prime tags: math expertise: intermediate +author: maciv firstSeen: 2020-10-03T18:03:32+03:00 lastUpdated: 2020-11-02T19:28:05+02:00 --- diff --git a/snippets/is_weekday.md b/snippets/is_weekday.md index 7c2b0be26..7253502c4 100644 --- a/snippets/is_weekday.md +++ b/snippets/is_weekday.md @@ -2,6 +2,7 @@ title: Date is weekday tags: date expertise: beginner +author: maciv firstSeen: 2020-10-28T16:20:18+02:00 lastUpdated: 2020-11-02T19:28:05+02:00 --- diff --git a/snippets/is_weekend.md b/snippets/is_weekend.md index 7bf57affa..da6c30cf3 100644 --- a/snippets/is_weekend.md +++ b/snippets/is_weekend.md @@ -2,6 +2,7 @@ title: Date is weekend tags: date expertise: beginner +author: maciv firstSeen: 2020-10-28T16:20:27+02:00 lastUpdated: 2020-11-02T19:28:05+02:00 --- diff --git a/snippets/key_in_dict.md b/snippets/key_in_dict.md index 6cdc5c5e5..7e919fd50 100644 --- a/snippets/key_in_dict.md +++ b/snippets/key_in_dict.md @@ -2,6 +2,7 @@ title: Key in dictionary tags: dictionary expertise: beginner +author: maciv firstSeen: 2020-10-16T21:30:49+03:00 lastUpdated: 2020-10-16T21:30:49+03:00 --- diff --git a/snippets/key_of_max.md b/snippets/key_of_max.md index f2cbcba6e..89fdfd241 100644 --- a/snippets/key_of_max.md +++ b/snippets/key_of_max.md @@ -2,6 +2,7 @@ title: Key of max value tags: dictionary expertise: beginner +author: maciv firstSeen: 2021-01-07T23:15:48+02:00 lastUpdated: 2021-01-07T23:15:48+02:00 --- diff --git a/snippets/key_of_min.md b/snippets/key_of_min.md index 2fdbf7d00..a1fe6d4a4 100644 --- a/snippets/key_of_min.md +++ b/snippets/key_of_min.md @@ -2,6 +2,7 @@ title: Key of min value tags: dictionary expertise: beginner +author: maciv firstSeen: 2021-01-07T23:15:48+02:00 lastUpdated: 2021-01-07T23:15:48+02:00 --- diff --git a/snippets/km_to_miles.md b/snippets/km_to_miles.md index 718e86b9a..7f90d6e52 100644 --- a/snippets/km_to_miles.md +++ b/snippets/km_to_miles.md @@ -2,6 +2,7 @@ title: Km to miles tags: math expertise: beginner +author: maciv unlisted: true firstSeen: 2020-10-04T00:23:49+03:00 lastUpdated: 2021-01-04T12:47:04+02:00 diff --git a/snippets/merge_dictionaries.md b/snippets/merge_dictionaries.md index 557c3a011..664375afe 100644 --- a/snippets/merge_dictionaries.md +++ b/snippets/merge_dictionaries.md @@ -2,6 +2,7 @@ title: Merge dictionaries tags: dictionary expertise: intermediate +author: maciv firstSeen: 2020-04-16T19:28:35+03:00 lastUpdated: 2020-11-02T19:28:27+02:00 --- diff --git a/snippets/miles_to_km.md b/snippets/miles_to_km.md index 83965d369..a038f3f11 100644 --- a/snippets/miles_to_km.md +++ b/snippets/miles_to_km.md @@ -2,6 +2,7 @@ title: Miles to km tags: math expertise: beginner +author: maciv unlisted: true firstSeen: 2020-10-04T00:24:01+03:00 lastUpdated: 2021-01-04T12:47:04+02:00 diff --git a/snippets/months_diff.md b/snippets/months_diff.md index 0f7e466ad..1515f1fdf 100644 --- a/snippets/months_diff.md +++ b/snippets/months_diff.md @@ -2,6 +2,7 @@ title: Date difference in months tags: date expertise: beginner +author: maciv firstSeen: 2020-10-28T16:20:39+02:00 lastUpdated: 2020-10-28T16:20:39+02:00 --- diff --git a/snippets/num_to_range.md b/snippets/num_to_range.md index 87972f108..52d6f03d0 100644 --- a/snippets/num_to_range.md +++ b/snippets/num_to_range.md @@ -2,6 +2,7 @@ title: Map number to range tags: math expertise: beginner +author: maciv firstSeen: 2020-10-04T12:43:57+03:00 lastUpdated: 2021-04-05T18:25:46+03:00 --- diff --git a/snippets/pad.md b/snippets/pad.md index 230d5caaf..e640bed6e 100644 --- a/snippets/pad.md +++ b/snippets/pad.md @@ -2,6 +2,7 @@ title: Pad string tags: string expertise: beginner +author: chalarangelo firstSeen: 2020-10-04T01:53:05+03:00 lastUpdated: 2020-10-04T01:53:05+03:00 --- diff --git a/snippets/powerset.md b/snippets/powerset.md index 8ddac4695..4897bd02a 100644 --- a/snippets/powerset.md +++ b/snippets/powerset.md @@ -2,6 +2,7 @@ title: Powerset tags: math,list expertise: advanced +author: chalarangelo firstSeen: 2020-10-04T13:14:01+03:00 lastUpdated: 2020-11-02T19:28:27+02:00 --- diff --git a/snippets/reverse_number.md b/snippets/reverse_number.md index 332681970..997be6926 100644 --- a/snippets/reverse_number.md +++ b/snippets/reverse_number.md @@ -2,6 +2,7 @@ title: Reverse number tags: math expertise: intermediate +author: maciv firstSeen: 2020-10-04T14:21:41+03:00 lastUpdated: 2020-11-02T19:28:27+02:00 --- diff --git a/snippets/rgb_to_hex.md b/snippets/rgb_to_hex.md index 069eb032d..feda0822b 100644 --- a/snippets/rgb_to_hex.md +++ b/snippets/rgb_to_hex.md @@ -2,6 +2,7 @@ title: RGB to hex tags: string,math expertise: intermediate +author: maciv firstSeen: 2020-09-13T01:08:00+03:00 lastUpdated: 2020-11-02T19:28:27+02:00 --- diff --git a/snippets/sort_dict_by_key.md b/snippets/sort_dict_by_key.md index bd6a425e0..ed7941c07 100644 --- a/snippets/sort_dict_by_key.md +++ b/snippets/sort_dict_by_key.md @@ -2,6 +2,7 @@ title: Sort dictionary by key tags: dictionary expertise: intermediate +author: maciv firstSeen: 2020-10-16T21:24:33+03:00 lastUpdated: 2020-11-02T19:28:35+02:00 --- diff --git a/snippets/sort_dict_by_value.md b/snippets/sort_dict_by_value.md index ae98f6f2a..6f3e6f2fc 100644 --- a/snippets/sort_dict_by_value.md +++ b/snippets/sort_dict_by_value.md @@ -2,6 +2,7 @@ title: Sort dictionary by value tags: dictionary expertise: intermediate +author: maciv firstSeen: 2020-10-16T21:25:19+03:00 lastUpdated: 2021-01-08T00:56:50+02:00 --- diff --git a/snippets/sum_of_powers.md b/snippets/sum_of_powers.md index 5b287c8e1..8c74bb360 100644 --- a/snippets/sum_of_powers.md +++ b/snippets/sum_of_powers.md @@ -2,6 +2,7 @@ title: Sum of powers tags: math expertise: intermediate +author: maciv firstSeen: 2020-10-04T14:21:41+03:00 lastUpdated: 2020-11-02T19:28:35+02:00 --- diff --git a/snippets/take.md b/snippets/take.md index b37fe53ea..48fc68d06 100644 --- a/snippets/take.md +++ b/snippets/take.md @@ -2,6 +2,7 @@ title: Remove list elements tags: list expertise: beginner +author: chalarangelo firstSeen: 2020-03-16T19:52:44+02:00 lastUpdated: 2020-09-15T16:13:06+03:00 --- diff --git a/snippets/take_right.md b/snippets/take_right.md index 1e8026ae3..bc32cd2a6 100644 --- a/snippets/take_right.md +++ b/snippets/take_right.md @@ -2,6 +2,7 @@ title: Remove list elements from the end tags: list expertise: beginner +author: chalarangelo firstSeen: 2020-03-16T19:52:44+02:00 lastUpdated: 2020-09-15T16:13:06+03:00 --- diff --git a/snippets/to_dictionary.md b/snippets/to_dictionary.md index 88bb61a49..550ffa7eb 100644 --- a/snippets/to_dictionary.md +++ b/snippets/to_dictionary.md @@ -2,6 +2,7 @@ title: Lists to dictionary tags: list,dictionary expertise: intermediate +author: maciv firstSeen: 2020-04-13T19:30:29+03:00 lastUpdated: 2020-11-02T19:28:35+02:00 --- diff --git a/snippets/to_iso_date.md b/snippets/to_iso_date.md index 928714371..28168adcf 100644 --- a/snippets/to_iso_date.md +++ b/snippets/to_iso_date.md @@ -2,6 +2,7 @@ title: Date to ISO format tags: date expertise: intermediate +author: maciv firstSeen: 2020-10-28T16:20:50+02:00 lastUpdated: 2021-01-07T23:30:28+02:00 --- diff --git a/snippets/to_roman_numeral.md b/snippets/to_roman_numeral.md index 062eb85b7..8b5f115c1 100644 --- a/snippets/to_roman_numeral.md +++ b/snippets/to_roman_numeral.md @@ -2,6 +2,7 @@ title: Integer to roman numeral tags: math,string expertise: intermediate +author: maciv firstSeen: 2020-10-07T00:04:09+03:00 lastUpdated: 2020-11-02T19:28:35+02:00 --- diff --git a/snippets/words.md b/snippets/words.md index d7a59cb54..d4dd75501 100644 --- a/snippets/words.md +++ b/snippets/words.md @@ -2,6 +2,7 @@ title: String to words tags: string,regexp expertise: beginner +author: maciv firstSeen: 2020-10-04T00:35:00+03:00 lastUpdated: 2020-11-02T19:28:35+02:00 ---