Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
498 B
23 lines
498 B
// Copyright (c) 2012-2016 The go-diff authors. All rights reserved. |
|
// https://github.com/sergi/go-diff |
|
// See the included LICENSE file for license details. |
|
// |
|
// go-diff is a Go implementation of Google's Diff, Match, and Patch library |
|
// Original library is Copyright (c) 2006 Google Inc. |
|
// http://code.google.com/p/google-diff-match-patch/ |
|
|
|
package diffmatchpatch |
|
|
|
func min(x, y int) int { |
|
if x < y { |
|
return x |
|
} |
|
return y |
|
} |
|
|
|
func max(x, y int) int { |
|
if x > y { |
|
return x |
|
} |
|
return y |
|
}
|
|
|