Skip to content

Instantly share code, notes, and snippets.

@sourhub226
sourhub226 / -dart.md
Last active September 5, 2021 07:25
Dart programming language basics


Example programs with outputs for learning the fundamentals of the Dart programming language

@sourhub226
sourhub226 / custom-color-palette.png
Last active September 11, 2021 15:11
Color Palettes for Designers and Artists
custom-color-palette.png
@sourhub226
sourhub226 / python-one-liners.md
Last active June 17, 2021 15:13
Python One-Liners -> Powerful snippets of code that solves a problem in a single line.

Python One-Liners

Powerful snippets of code that solves a problem in a single line

1. Palindrome

string = "madam"

# One-Liner
is_palindrome = not bool(string.find(string[::-1]))