Navigation : AP CS - Haskell -- 1. Intro -- 2. Starting Out -- 3. Types and Typeclasses -- 4. Syntax in Functions -- 5. Recursion -- 6. Higher Order Functions -- 7. Modules -- USACO Practice -- Haskell Daily Notes --- 2018-10-16 --- 2018-10-09 Project --- 2018.10.04 Square Pasture --- 2018.10.03 Cow Signal --- 2017-10-04 --- 2017-10-03 --- 2017-09-18 --- 2017-09-14 Indentation --- 2017-09-12 --- 2017-09-11 -- Scrabble -- Connect Four -- Typeclass Notes -- Repl.it -- Source Code Files (ghci) - Java Essentials - Problem Solving - AP Review - Preparation Artificial Intelligence Intermediate CS Robotics WY Robotics Exploring CS (Teachers) Resources 2017-09-11 removeVowels word = [ letter | letter <- word, not (letter elem “aeiouAEIOU” )] wordLenPairs wordlist = [ (word, length word) | word <- wordlist ] 2017-09-12 Scrabble