Related Posts
Always got to find the sunshine!

Additional Posts in Data & Analytics Consultants
today I choose violence

New to Fishbowl?
Download the Fishbowl app to
unlock all discussions on Fishbowl.
unlock all discussions on Fishbowl.
Always got to find the sunshine!

today I choose violence

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.
Download the Fishbowl app to unlock all discussions on Fishbowl.
Copy and paste embed code on your site

Scan your QR code to download
Fishbowl app on your mobile

A recipe for programmers
Method/approach/ mathematical calculation
Subject Expert
A step by step set of instructions to do something. This includes everything from teaching a child to wipe with a picture book to formal logic about automata.
In practice it's almost always one of these:
- leetcode solution
- type of stats/ML model
- program module
- heuristic implemented in Excel which should've been formalize as a program module
the whole truth, and nothing but
In layman terms, sequence of steps you take to solve a problem!!
an algorithm can be super simple. what’s the algorithm to make coffee using my keurig? - 1.turn on kuerig
2. pick a keurig cup.
3. put keurig cup in keurig thing
4. pick coffee cup
5. put coffee cup under coffee dispenser
6. press an amount of coffee to dispense
7. let coffee fill up coffee cup
we could do one for anything really. how to put a shirt on, how to tie shoes, how to brush teeth.
we also can do them for stuff like how to -reverse a linked list,
-how to sort a list of unsorted numbers, (maybe use merge sort, heap sort or quick sort)
-how to search a list of sorted numbers (binary search)
-how to find duplicates in a list of unsorted numbers (maybe sort first and use binary search, depending on other stuff)