Skip to content

Latest commit

 

History

History
62 lines (38 loc) · 1.51 KB

File metadata and controls

62 lines (38 loc) · 1.51 KB

Problem Set

What is an ideal problem set? Especially for someone who is learning Python as a first language? What set of problems will assess fundamental knowledge of computer science as well?

Links

FizzBuzz

2nd maximum value in an array

Remove Duplicates

Reverse Dictionary

http://j.mp/reverseDictionary

Tile Solver

Bracket Validator

Sorting

  • Merging Lists
    • http://j.mp/unionListCC
      
  • SelectSort implementation
  • How to maintain a list of addresses in alphabetical order (best strategy)

Efficient Fibonacci Series

Maximum Subarray sum (TDD)

Tree Traversal

  • breadth first, depth first - which is better, and when?

Graph Traversal

  • Travelling Salesman problem, etc

Dynamic Programming

http://j.mp/ladderCD