Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 971 Bytes

README.md

File metadata and controls

33 lines (25 loc) · 971 Bytes

0X1E. C-Search Algorithms

c Algortim

Resources

Read or watch:

More Info

You will be asked to write files containing big O notations. Please use this format:

  • O(1)
  • O(n)
  • O(n!)
  • n*m -> O(nm)
  • n square -> O(n^2)
  • sqrt n -> O(sqrt(n))
  • log(n) -> O(log(n))
  • n * log(n) -> O(nlog(n))
c is the best language to use when coharsing the machine at it's roots