Skip to content

Commit

Permalink
Simple header for main files
Browse files Browse the repository at this point in the history
  • Loading branch information
lightvector committed Jan 20, 2024
1 parent e06da6b commit 8dafc9b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions javascript/goscorer.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/**
* An attempt at territory scoring in Go with seki detection.
* See https://github.com/lightvector/goscorer
* Original Author: lightvector
* Released under MIT license (https://github.com/lightvector/goscorer/blob/main/LICENSE.txt)
*/

const EMPTY = 0;
const BLACK = 1;
Expand Down
6 changes: 6 additions & 0 deletions python/goscorer.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
An attempt at territory scoring in Go with seki detection.
See https://github.com/lightvector/goscorer
Original Author: lightvector
Released under MIT license (https://github.com/lightvector/goscorer/blob/main/LICENSE.txt)
"""

from typing import List, Dict, Tuple, Set, Optional
from dataclasses import dataclass
Expand Down

0 comments on commit 8dafc9b

Please sign in to comment.