gitextract_nylby5hi/ ├── .gitattributes ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── language_fix.py ├── snippet-template.md └── snippets/ ├── add-days.md ├── all-equal.md ├── all-unique.md ├── arithmetic-progression.md ├── average-by.md ├── average.md ├── bifurcate-by.md ├── bifurcate.md ├── binomial-coefficient.md ├── byte-size.md ├── camel.md ├── capitalize-every-word.md ├── capitalize.md ├── cast-list.md ├── celsius-to-fahrenheit.md ├── check-prop.md ├── chunk-into-n.md ├── chunk.md ├── clamp-number.md ├── collect-dictionary.md ├── combine-values.md ├── compact.md ├── compose-right.md ├── compose.md ├── count-by.md ├── count-occurrences.md ├── cumsum.md ├── curry.md ├── daterange.md ├── days-ago.md ├── days-diff.md ├── days-from-now.md ├── decapitalize.md ├── deep-flatten.md ├── degrees-to-rads.md ├── delay.md ├── dict-to-list.md ├── difference-by.md ├── difference.md ├── digitize.md ├── drop-right.md ├── drop.md ├── every-nth.md ├── every.md ├── factorial.md ├── fahrenheit-to-celsius.md ├── fibonacci.md ├── filter-non-unique.md ├── filter-unique.md ├── find-index-of-all.md ├── find-index.md ├── find-key.md ├── find-keys.md ├── find-last-index.md ├── find-last.md ├── find-parity-outliers.md ├── find.md ├── flatten.md ├── for-each-right.md ├── for-each.md ├── frequencies.md ├── from-iso-date.md ├── gcd.md ├── geometric-progression.md ├── get.md ├── group-by.md ├── hamming-distance.md ├── has-duplicates.md ├── have-same-contents.md ├── head.md ├── hex-to-rgb.md ├── in-range.md ├── includes-all.md ├── includes-any.md ├── index-of-all.md ├── initial.md ├── initialize-2-d-list.md ├── initialize-list-with-range.md ├── initialize-list-with-values.md ├── intersection-by.md ├── intersection.md ├── invert-dictionary.md ├── is-anagram.md ├── is-contained-in.md ├── is-divisible.md ├── is-empty.md ├── is-even.md ├── is-odd.md ├── is-prime.md ├── is-weekday.md ├── is-weekend.md ├── kebab.md ├── key-in-dict.md ├── key-of-max.md ├── key-of-min.md ├── keys-only.md ├── km-to-miles.md ├── last.md ├── lcm.md ├── longest-item.md ├── map-dictionary.md ├── map-values.md ├── max-by.md ├── max-element-index.md ├── max-n.md ├── median.md ├── merge-dictionaries.md ├── merge.md ├── miles-to-km.md ├── min-by.md ├── min-element-index.md ├── min-n.md ├── months-diff.md ├── most-frequent.md ├── n-times-string.md ├── none.md ├── num-to-range.md ├── offset.md ├── pad-number.md ├── pad.md ├── palindrome.md ├── pluck.md ├── powerset.md ├── rads-to-degrees.md ├── reverse-number.md ├── reverse.md ├── rgb-to-hex.md ├── roll.md ├── sample.md ├── shuffle.md ├── similarity.md ├── slugify.md ├── snake.md ├── some.md ├── sort-by-indexes.md ├── sort-dict-by-key.md ├── sort-dict-by-value.md ├── split-lines.md ├── spread.md ├── sum-by.md ├── sum-of-powers.md ├── symmetric-difference-by.md ├── symmetric-difference.md ├── tail.md ├── take-right.md ├── take.md ├── to-binary.md ├── to-dictionary.md ├── to-hex.md ├── to-iso-date.md ├── to-roman-numeral.md ├── transpose.md ├── unfold.md ├── union-by.md ├── union.md ├── unique-elements.md ├── values-only.md ├── weighted-average.md ├── when.md └── words.md