├── .gitignore ├── aima ├── agents.py ├── csp.py ├── doctests.py ├── games.py ├── images │ ├── .svn │ │ ├── all-wcprops │ │ ├── entries │ │ ├── prop-base │ │ │ ├── dirt05-icon.jpg.svn-base │ │ │ ├── vacuum-icon.jpg.svn-base │ │ │ └── wall-icon.jpg.svn-base │ │ └── text-base │ │ │ ├── IMAGE-CREDITS.svn-base │ │ │ ├── dirt.svg.svn-base │ │ │ ├── dirt05-icon.jpg.svn-base │ │ │ ├── makefile.svn-base │ │ │ ├── vacuum-icon.jpg.svn-base │ │ │ ├── vacuum.svg.svn-base │ │ │ └── wall-icon.jpg.svn-base │ ├── IMAGE-CREDITS │ ├── dirt.svg │ ├── dirt05-icon.jpg │ ├── makefile │ ├── vacuum-icon.jpg │ ├── vacuum.svg │ └── wall-icon.jpg ├── learning.py ├── logic.py ├── mdp.py ├── nlp.py ├── planning.py ├── probability.doctest ├── probability.py ├── rl.py ├── search.py ├── searchprob.py ├── text.py └── utils.py ├── cs101-Introduction-to-Computer-Science ├── collatz.py ├── final4.py ├── final5.py ├── final6.py ├── final_star2.py ├── final_star3.py ├── finaly6.py ├── hw2-4.py ├── hw2-5.py ├── hw2-6.py ├── hw2-7.py ├── hw2.2.py ├── hw2.3.py ├── hw2.6.py ├── hw2.7.py ├── hw3.1.py ├── hw3.2.py ├── hw3.3.py ├── hw3.4.py ├── hw3.5.py ├── hw3.6.py ├── hw3.7.py ├── hw3.8.py ├── hw4_5.py ├── hw4_6.py └── hw4_7.py ├── cs212-Design-of-Computer-Programs ├── final-1.py ├── final-2.py ├── final-3.py ├── final-4.py ├── final-5.py ├── final-6.py ├── hw1-1-rev2.py ├── hw1-1.py ├── hw1-1a-rev2.py ├── hw1-1a.py ├── hw1-2-rev2.py ├── hw1-2.py ├── hw2-1--cryptarithmatic-compiled.py ├── hw2-2--apartment-puzzle.py ├── hw2-3--subpalindome.py ├── hw3-1--json-grammar.py ├── quiz │ ├── q1-24--evaluate_poker_hand_rank.py │ ├── q1-27--deal-deck.py │ ├── q2-19--zebra-puzzle.py │ ├── q2-19.py │ ├── q2-32--cryptarithmatic.py │ ├── q2-34--cryptarithmatic-examples.py │ ├── q2_3_cryptographic_formula.py │ ├── q3-29--trace.py │ ├── q3-6--matchset.py │ └── q3-8--match-and-search.py └── wiki-code │ ├── bridge.py │ ├── cannibals.py │ ├── conditional.py │ ├── cryptarithmatic.py │ ├── decorators.py │ ├── grammar.py │ ├── pig.py │ ├── poker.py │ ├── pour.py │ ├── regex_compiler.py │ ├── regex_generator.py │ ├── regex_interpreter.py │ ├── scrabble.py │ ├── search.py │ ├── words4k.txt │ └── zebra.py ├── cs253-Web-Application-Engineering ├── app.yaml └── guestbook.py ├── cs262-Programming-Languages ├── cs262--Norvig Answers │ ├── CS262 Unit 1-v24 Parsing, Regular Expressions, Finite State Machines.pdf │ ├── CS262 Unit 3-v4 Grammar.pdf │ ├── final1-bowling.py │ ├── final1-poly.py │ ├── final3-polynomial.py │ └── parsing-code.py └── final-1.py ├── cs344-Introduction-to-Parallel-Programming ├── README.html ├── README.md ├── pip_install_numpy.py ├── pip_install_pyopencl.sh └── pyopencl_example.py ├── cs373-Programming-a-Robotic-Car ├── ai-hw2.py ├── ai_hw9.py ├── cs373 SLAM algorithm office hours.txt ├── final1.py ├── final16.py ├── final20.py ├── final3.py ├── final5.py ├── final6.py ├── final6.py.old ├── final8.py ├── hw1-4.py ├── hw1-4_submital.py ├── hw1.4.py ├── hw1.4submital.py ├── hw1.py ├── hw2-2.py ├── hw2.6.py ├── hw3.2.py ├── hw3.6.py ├── hw3.6gui.py ├── hw3_6.py ├── hw3_6orig.py ├── hw4.7.py ├── hw4_7.py ├── hw4_7_submit.py ├── hw6_1.py ├── hw6_3.py ├── quiz2-19.py ├── quiz2.19.py ├── quiz4.19.py ├── quiz4_19.py ├── quiz5_5.py ├── quiz6_21.py └── quiz6_22.py ├── cs387-Applied-Cryptography ├── hw1-4-probability-3.py └── hw1-5-one-time-pad.py ├── practice.sublime-workspace ├── practice ├── baseballcard_collection.py ├── decorators.py ├── hashtable.py ├── hosh.cpp ├── hosh.py ├── pc101.cpp ├── plotutil.py └── sort.py └── rosetta ├── heapsort.py └── quicksort.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/.gitignore -------------------------------------------------------------------------------- /aima/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/agents.py -------------------------------------------------------------------------------- /aima/csp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/csp.py -------------------------------------------------------------------------------- /aima/doctests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/doctests.py -------------------------------------------------------------------------------- /aima/games.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/games.py -------------------------------------------------------------------------------- /aima/images/.svn/all-wcprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/images/.svn/all-wcprops -------------------------------------------------------------------------------- /aima/images/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/images/.svn/entries -------------------------------------------------------------------------------- /aima/images/.svn/prop-base/dirt05-icon.jpg.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /aima/images/.svn/prop-base/vacuum-icon.jpg.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /aima/images/.svn/prop-base/wall-icon.jpg.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /aima/images/.svn/text-base/IMAGE-CREDITS.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/images/.svn/text-base/IMAGE-CREDITS.svn-base -------------------------------------------------------------------------------- /aima/images/.svn/text-base/dirt.svg.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/images/.svn/text-base/dirt.svg.svn-base -------------------------------------------------------------------------------- /aima/images/.svn/text-base/dirt05-icon.jpg.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/images/.svn/text-base/dirt05-icon.jpg.svn-base -------------------------------------------------------------------------------- /aima/images/.svn/text-base/makefile.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/images/.svn/text-base/makefile.svn-base -------------------------------------------------------------------------------- /aima/images/.svn/text-base/vacuum-icon.jpg.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/images/.svn/text-base/vacuum-icon.jpg.svn-base -------------------------------------------------------------------------------- /aima/images/.svn/text-base/vacuum.svg.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/images/.svn/text-base/vacuum.svg.svn-base -------------------------------------------------------------------------------- /aima/images/.svn/text-base/wall-icon.jpg.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/images/.svn/text-base/wall-icon.jpg.svn-base -------------------------------------------------------------------------------- /aima/images/IMAGE-CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/images/IMAGE-CREDITS -------------------------------------------------------------------------------- /aima/images/dirt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/images/dirt.svg -------------------------------------------------------------------------------- /aima/images/dirt05-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/images/dirt05-icon.jpg -------------------------------------------------------------------------------- /aima/images/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/images/makefile -------------------------------------------------------------------------------- /aima/images/vacuum-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/images/vacuum-icon.jpg -------------------------------------------------------------------------------- /aima/images/vacuum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/images/vacuum.svg -------------------------------------------------------------------------------- /aima/images/wall-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/images/wall-icon.jpg -------------------------------------------------------------------------------- /aima/learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/learning.py -------------------------------------------------------------------------------- /aima/logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/logic.py -------------------------------------------------------------------------------- /aima/mdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/mdp.py -------------------------------------------------------------------------------- /aima/nlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/nlp.py -------------------------------------------------------------------------------- /aima/planning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/planning.py -------------------------------------------------------------------------------- /aima/probability.doctest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/probability.doctest -------------------------------------------------------------------------------- /aima/probability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/probability.py -------------------------------------------------------------------------------- /aima/rl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/rl.py -------------------------------------------------------------------------------- /aima/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/search.py -------------------------------------------------------------------------------- /aima/searchprob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/searchprob.py -------------------------------------------------------------------------------- /aima/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/text.py -------------------------------------------------------------------------------- /aima/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/aima/utils.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/collatz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/collatz.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/final4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/final4.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/final5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/final5.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/final6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/final6.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/final_star2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/final_star2.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/final_star3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/final_star3.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/finaly6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/finaly6.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/hw2-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/hw2-4.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/hw2-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/hw2-5.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/hw2-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/hw2-6.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/hw2-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/hw2-7.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/hw2.2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/hw2.2.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/hw2.3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/hw2.3.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/hw2.6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/hw2.6.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/hw2.7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/hw2.7.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/hw3.1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/hw3.1.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/hw3.2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/hw3.2.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/hw3.3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/hw3.3.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/hw3.4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/hw3.4.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/hw3.5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/hw3.5.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/hw3.6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/hw3.6.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/hw3.7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/hw3.7.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/hw3.8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/hw3.8.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/hw4_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/hw4_5.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/hw4_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/hw4_6.py -------------------------------------------------------------------------------- /cs101-Introduction-to-Computer-Science/hw4_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs101-Introduction-to-Computer-Science/hw4_7.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/final-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/final-1.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/final-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/final-2.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/final-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/final-3.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/final-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/final-4.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/final-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/final-5.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/final-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/final-6.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/hw1-1-rev2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/hw1-1-rev2.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/hw1-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/hw1-1.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/hw1-1a-rev2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/hw1-1a-rev2.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/hw1-1a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/hw1-1a.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/hw1-2-rev2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/hw1-2-rev2.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/hw1-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/hw1-2.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/hw2-1--cryptarithmatic-compiled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/hw2-1--cryptarithmatic-compiled.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/hw2-2--apartment-puzzle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/hw2-2--apartment-puzzle.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/hw2-3--subpalindome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/hw2-3--subpalindome.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/hw3-1--json-grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/hw3-1--json-grammar.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/quiz/q1-24--evaluate_poker_hand_rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/quiz/q1-24--evaluate_poker_hand_rank.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/quiz/q1-27--deal-deck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/quiz/q1-27--deal-deck.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/quiz/q2-19--zebra-puzzle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/quiz/q2-19--zebra-puzzle.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/quiz/q2-19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/quiz/q2-19.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/quiz/q2-32--cryptarithmatic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/quiz/q2-32--cryptarithmatic.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/quiz/q2-34--cryptarithmatic-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/quiz/q2-34--cryptarithmatic-examples.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/quiz/q2_3_cryptographic_formula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/quiz/q2_3_cryptographic_formula.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/quiz/q3-29--trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/quiz/q3-29--trace.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/quiz/q3-6--matchset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/quiz/q3-6--matchset.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/quiz/q3-8--match-and-search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/quiz/q3-8--match-and-search.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/wiki-code/bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/wiki-code/bridge.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/wiki-code/cannibals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/wiki-code/cannibals.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/wiki-code/conditional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/wiki-code/conditional.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/wiki-code/cryptarithmatic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/wiki-code/cryptarithmatic.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/wiki-code/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/wiki-code/decorators.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/wiki-code/grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/wiki-code/grammar.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/wiki-code/pig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/wiki-code/pig.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/wiki-code/poker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/wiki-code/poker.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/wiki-code/pour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/wiki-code/pour.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/wiki-code/regex_compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/wiki-code/regex_compiler.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/wiki-code/regex_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/wiki-code/regex_generator.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/wiki-code/regex_interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/wiki-code/regex_interpreter.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/wiki-code/scrabble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/wiki-code/scrabble.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/wiki-code/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/wiki-code/search.py -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/wiki-code/words4k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/wiki-code/words4k.txt -------------------------------------------------------------------------------- /cs212-Design-of-Computer-Programs/wiki-code/zebra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs212-Design-of-Computer-Programs/wiki-code/zebra.py -------------------------------------------------------------------------------- /cs253-Web-Application-Engineering/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs253-Web-Application-Engineering/app.yaml -------------------------------------------------------------------------------- /cs253-Web-Application-Engineering/guestbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs253-Web-Application-Engineering/guestbook.py -------------------------------------------------------------------------------- /cs262-Programming-Languages/cs262--Norvig Answers/CS262 Unit 1-v24 Parsing, Regular Expressions, Finite State Machines.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs262-Programming-Languages/cs262--Norvig Answers/CS262 Unit 1-v24 Parsing, Regular Expressions, Finite State Machines.pdf -------------------------------------------------------------------------------- /cs262-Programming-Languages/cs262--Norvig Answers/CS262 Unit 3-v4 Grammar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs262-Programming-Languages/cs262--Norvig Answers/CS262 Unit 3-v4 Grammar.pdf -------------------------------------------------------------------------------- /cs262-Programming-Languages/cs262--Norvig Answers/final1-bowling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs262-Programming-Languages/cs262--Norvig Answers/final1-bowling.py -------------------------------------------------------------------------------- /cs262-Programming-Languages/cs262--Norvig Answers/final1-poly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs262-Programming-Languages/cs262--Norvig Answers/final1-poly.py -------------------------------------------------------------------------------- /cs262-Programming-Languages/cs262--Norvig Answers/final3-polynomial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs262-Programming-Languages/cs262--Norvig Answers/final3-polynomial.py -------------------------------------------------------------------------------- /cs262-Programming-Languages/cs262--Norvig Answers/parsing-code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs262-Programming-Languages/cs262--Norvig Answers/parsing-code.py -------------------------------------------------------------------------------- /cs262-Programming-Languages/final-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs262-Programming-Languages/final-1.py -------------------------------------------------------------------------------- /cs344-Introduction-to-Parallel-Programming/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs344-Introduction-to-Parallel-Programming/README.html -------------------------------------------------------------------------------- /cs344-Introduction-to-Parallel-Programming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs344-Introduction-to-Parallel-Programming/README.md -------------------------------------------------------------------------------- /cs344-Introduction-to-Parallel-Programming/pip_install_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs344-Introduction-to-Parallel-Programming/pip_install_numpy.py -------------------------------------------------------------------------------- /cs344-Introduction-to-Parallel-Programming/pip_install_pyopencl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs344-Introduction-to-Parallel-Programming/pip_install_pyopencl.sh -------------------------------------------------------------------------------- /cs344-Introduction-to-Parallel-Programming/pyopencl_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs344-Introduction-to-Parallel-Programming/pyopencl_example.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/ai-hw2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/ai-hw2.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/ai_hw9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/ai_hw9.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/cs373 SLAM algorithm office hours.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/cs373 SLAM algorithm office hours.txt -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/final1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/final1.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/final16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/final16.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/final20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/final20.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/final3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/final3.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/final5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/final5.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/final6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/final6.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/final6.py.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/final6.py.old -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/final8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/final8.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/hw1-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/hw1-4.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/hw1-4_submital.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/hw1-4_submital.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/hw1.4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/hw1.4.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/hw1.4submital.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/hw1.4submital.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/hw1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/hw1.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/hw2-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/hw2-2.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/hw2.6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/hw2.6.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/hw3.2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/hw3.2.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/hw3.6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/hw3.6.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/hw3.6gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/hw3.6gui.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/hw3_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/hw3_6.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/hw3_6orig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/hw3_6orig.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/hw4.7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/hw4.7.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/hw4_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/hw4_7.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/hw4_7_submit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/hw4_7_submit.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/hw6_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/hw6_1.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/hw6_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/hw6_3.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/quiz2-19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/quiz2-19.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/quiz2.19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/quiz2.19.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/quiz4.19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/quiz4.19.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/quiz4_19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/quiz4_19.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/quiz5_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/quiz5_5.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/quiz6_21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/quiz6_21.py -------------------------------------------------------------------------------- /cs373-Programming-a-Robotic-Car/quiz6_22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs373-Programming-a-Robotic-Car/quiz6_22.py -------------------------------------------------------------------------------- /cs387-Applied-Cryptography/hw1-4-probability-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs387-Applied-Cryptography/hw1-4-probability-3.py -------------------------------------------------------------------------------- /cs387-Applied-Cryptography/hw1-5-one-time-pad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/cs387-Applied-Cryptography/hw1-5-one-time-pad.py -------------------------------------------------------------------------------- /practice.sublime-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/practice.sublime-workspace -------------------------------------------------------------------------------- /practice/baseballcard_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/practice/baseballcard_collection.py -------------------------------------------------------------------------------- /practice/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/practice/decorators.py -------------------------------------------------------------------------------- /practice/hashtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/practice/hashtable.py -------------------------------------------------------------------------------- /practice/hosh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/practice/hosh.cpp -------------------------------------------------------------------------------- /practice/hosh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/practice/hosh.py -------------------------------------------------------------------------------- /practice/pc101.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/practice/pc101.cpp -------------------------------------------------------------------------------- /practice/plotutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/practice/plotutil.py -------------------------------------------------------------------------------- /practice/sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/practice/sort.py -------------------------------------------------------------------------------- /rosetta/heapsort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/rosetta/heapsort.py -------------------------------------------------------------------------------- /rosetta/quicksort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobson/udacity/HEAD/rosetta/quicksort.py --------------------------------------------------------------------------------