a meta deck for programming and computer science

Math
This is a early stage WIP meant to be an exhaustive resource on the topic of programming, all language specific stuff is separated into it's own deck and can easily be removed. if you see something that needs improvement or would like to contribute please head to the support page.

Sample Data

Front What is Big-Ω?
Back provides a lower-bound on the number of operations performed by an algorithm
Tags time_complexity
Front is the intercept
Aliases the constant (in regression analysis)bias (in machine learning)
Back the point at which the the regression line crosses the y-axis
Tags basics statistical_learning
Q convert a number of base x to base 16?
A with int,hex,and slice
Syntax example def baseConversion(n, x):    return hex(int(n,base=x))[2:]
Tags bit_manipulation integer standard_library
0 Cards
0 Likes
4 Ratings
0 Downloads