Haskell Daily Notes

  • 2018.10.09 Project
  • The end-of-Haskell project.

  • 2018-10-16
  • notAlone. notAlone :: [Int] -> Int -> [Int] notAlone nums x = undefined Team Tic Tac Toe Write teamWins to determine if a given team wins a given three in a row. teamWins :: String -> [Char] -> Bool teamWins row team = undefined Write allThrees, which gets all of the three in a row segments from a board. allThrees :: [String] -> [String] allThrees board = undefined Write allTeams, which produces a list of all possible teams.

  • 2018.10.04 Square Pasture
  • USACO Bronze December 2016, Question 1.

  • 2018.10.03 Cow Signal
  • USACO Bronze December 2016, Question 2.

  • 2017-10-04
  • More CodingBat problems.

  • 2017-10-03
  • CodingBat problems to improve your problem-solving skills.

  • 2017-09-18
  • Battleship and homework review.

  • 2017-09-14 Indentation
  • Indentation matters. A lot.

  • 2017-09-12
  • Technical details that came up while doing Chapter 2 Homework.

  • 2017-09-11
  • worked examples - removeVowels and wordLenPairs