소스 검색

Solved part2

Piotr Czajkowski 2 년 전
부모
커밋
1bd678a636
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      13/code.go

+ 1 - 1
13/code.go

@@ -91,7 +91,7 @@ func foldByY(input []point, foldY int) {
 func foldByX(input []point, foldX int) {
 	for i, p := range input {
 		if p.x > foldX {
-			input[i].x = p.x%foldX - 1
+			input[i].x = p.x - foldX - 1
 			continue
 		}