problemset2

    [CS50X] 2024 Week2 Arrays Problem Set 2 (Scrabble, Readability, Substitution)

    Scrabble 문제 링크 https://cs50.harvard.edu/x/2024/psets/2/scrabble/ Scrabble - CS50x 2024 Harvard University's introduction to the intellectual enterprises of computer science and the art of programming. cs50.harvard.edu 의사코드 작성 /* 1. 플레이어1 플레이어2 문자열 받기 2. 각각 점수 계산하기 3. 점수 비교후 알맞은 내용 출력하기 */ 실제 코드 작성 #include #include #include #include int scoretable[] = {1, 3, 3, 2, 1, 4, 2, 4, 1, 8, 5, 1, 3, 1, 1..